amogh-jahagirdar commented on code in PR #7011:
URL: https://github.com/apache/iceberg/pull/7011#discussion_r1133151506
##########
core/src/main/java/org/apache/iceberg/FileMetadata.java:
##########
@@ -192,6 +196,15 @@ public Builder withMetrics(Metrics metrics) {
return this;
}
+ public Builder withSplitOffsets(List<Long> offsets) {
+ if (offsets != null) {
+ this.splitOffsets = KryoUtil.copyList(offsets);
+ } else {
+ this.splitOffsets = null;
+ }
Review Comment:
Sure I am not super opinionated on this, I think that's fine!
--
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]