rdblue commented on code in PR #8525:
URL: https://github.com/apache/iceberg/pull/8525#discussion_r1330615796


##########
api/src/main/java/org/apache/iceberg/DeleteFiles.java:
##########
@@ -81,4 +81,8 @@ default DeleteFiles deleteFile(DataFile file) {
    * @return this for method chaining
    */
   DeleteFiles caseSensitive(boolean caseSensitive);
+
+  DeleteFiles validateFilesExist(boolean validateFilesToDeleteExist);
+
+  DeleteFiles validateFromSnapshot(long snapshot);

Review Comment:
   I think there's a bit of a misunderstanding. I thought that this feature 
would call `failMissingDeletePaths()`, which uses the delete managers and 
avoids the need to check metadata changes since some point in the past.
   
   ```java
     protected void failMissingDeletePaths() {
       filterManager.failMissingDeletePaths();
       deleteFilterManager.failMissingDeletePaths();
     }
   ```



-- 
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]

Reply via email to