RussellSpitzer commented on code in PR #9000: URL: https://github.com/apache/iceberg/pull/9000#discussion_r1388316731
########## core/src/test/java/org/apache/iceberg/TestRewriteManifests.java: ########## @@ -1105,6 +1108,530 @@ public void testRewriteManifestsOnBranchUnsupported() { "Cannot commit to branch someBranch: org.apache.iceberg.BaseRewriteManifests does not support branch commits"); } + @Test + public void testRewriteDataManifestsPreservesDeletes() { + Assumptions.assumeThat(formatVersion).isGreaterThan(1); + + Table table = load(); + + table.newAppend().appendFile(FILE_A).appendFile(FILE_B).commit(); Review Comment: From here to 1131 could probably be refactored out into Into something like "prepareTable(DataFiles, DeleteFiles) -- 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-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org