wmoustafa commented on code in PR #6004:
URL: https://github.com/apache/iceberg/pull/6004#discussion_r1179984555


##########
.palantir/revapi.yml:
##########
@@ -16,9 +20,15 @@ acceptedBreaks:
     - code: "java.method.addedToInterface"
       new: "method java.util.List<org.apache.iceberg.StatisticsFile> 
org.apache.iceberg.Table::statisticsFiles()"
       justification: "new API method"
+    - code: "java.method.addedToInterface"
+      new: "method org.apache.iceberg.TableScan 
org.apache.iceberg.TableScan::useRef(java.lang.String)"
+      justification: "Adding table scan APIs to support scanning from refs"
     - code: "java.method.removed"
       old: "method java.lang.Iterable<org.apache.iceberg.DataFile> 
org.apache.iceberg.Snapshot::addedFiles()"
       justification: "Deprecations for 1.0 release"
+    - code: "java.method.removed"
+      old: "method java.lang.Iterable<org.apache.iceberg.DataFile> 
org.apache.iceberg.Snapshot::deletedFiles()"
+      justification: "Deprecations for 1.0 release"

Review Comment:
   These were moved around due to the API change in `NestedFields`. It should 
go away once we fix the access modifiers for `optional` and the constructor. 
Access modifiers were changed to accommodate keeping the new APIs private, but 
we found there was no good solution for that, so we will just go with making 
them new API public (as it is the case in the end state). This will take care 
of keeping this file intact as well.



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