flyrain commented on code in PR #4539:
URL: https://github.com/apache/iceberg/pull/4539#discussion_r855629689
##########
core/src/main/java/org/apache/iceberg/ManifestGroup.java:
##########
@@ -125,6 +129,16 @@ ManifestGroup ignoreExisting() {
return this;
}
+ public ManifestGroup ignoreAdded() {
+ this.ignoreAdded = true;
+ return this;
+ }
+
+ public ManifestGroup onlyWithDeletes() {
Review Comment:
No. `onlyWithDeletes` means we only get the data files with row-level
deletes. Maybe I should rename it to `onlyWithRowLevelDeletes`.
`ignoreExisting` and `ignoreAdded` are used to filter the type of data files.
--
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]