You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@iceberg.apache.org by "Fokko (via GitHub)" <gi...@apache.org> on 2023/04/21 12:28:08 UTC

[GitHub] [iceberg] Fokko commented on issue #7386: Issue /w UpdatePartitionSpec after deleting a partition field and schema field

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: issues-unsubscribe@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org