pvary commented on code in PR #8803: URL: https://github.com/apache/iceberg/pull/8803#discussion_r1392376668
########## core/src/main/java/org/apache/iceberg/ManifestGroup.java: ########## @@ -154,6 +156,12 @@ ManifestGroup caseSensitive(boolean newCaseSensitive) { return this; } + ManifestGroup columnsToKeepStats(Set<Integer> newColumnsToKeepStats) { + this.columnsToKeepStats = + newColumnsToKeepStats == null ? null : Sets.newHashSet(newColumnsToKeepStats); Review Comment: Kept as it is more consistent with the other implementations -- 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