Fokko commented on issue #7386:
URL: https://github.com/apache/iceberg/issues/7386#issuecomment-1517760701
I can confirm:
```
@Test
public void testDeletingPartitionField() {
TestTables.TestTable table =
TestTables.create(tableDir, "test", SCHEMA, BY_DATA_SPEC,
V1_FORMAT_VERSION);
table.updateSpec().removeField("data").commit();
table.updateSchema().deleteColumn("data").commit();
table.updateSpec().addField("id").commit();
}
```
This happens only with V1 tables.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]