pvary commented on code in PR #8803: URL: https://github.com/apache/iceberg/pull/8803#discussion_r1369760806
########## core/src/main/java/org/apache/iceberg/BaseScan.java: ########## @@ -165,6 +169,12 @@ public ThisT includeColumnStats() { return newRefinedScan(table, schema, context.shouldReturnColumnStats(true)); } + @Override + public ThisT includeColumnStats(Set<Integer> statsNeeded) { Review Comment: Fixed everywhere (I hope, will check). ########## core/src/main/java/org/apache/iceberg/ManifestGroup.java: ########## @@ -154,6 +156,11 @@ ManifestGroup caseSensitive(boolean newCaseSensitive) { return this; } + ManifestGroup columnStatsToKeep(Set<Integer> newColumnStatsToKeep) { + this.columnStatsToKeep = newColumnStatsToKeep; 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