nastra commented on code in PR #10150: URL: https://github.com/apache/iceberg/pull/10150#discussion_r1579060905
########## core/src/test/java/org/apache/iceberg/TestOverwrite.java: ########## @@ -135,6 +135,49 @@ public void createTestTable() throws IOException { commit(table, table.newAppend().appendFile(FILE_0_TO_4).appendFile(FILE_5_TO_9), branch); } + @TestTemplate + public void deleteDataFilesProducesDeleteOperation() { + OverwriteFiles overwriteFiles = table.newOverwrite().deleteFile(FILE_A).deleteFile(FILE_B); + + commit(table, overwriteFiles, branch); + Snapshot snap = latestSnapshot(table, branch); Review Comment: done -- 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