aokolnychyi commented on code in PR #11443:
URL: https://github.com/apache/iceberg/pull/11443#discussion_r1826307104


##########
core/src/main/java/org/apache/iceberg/BaseFile.java:
##########
@@ -339,6 +344,9 @@ protected <T> void internalSet(int pos, T value) {
         this.sortOrderId = (Integer) value;
         return;
       case 17:
+        this.referencedDataFile = value != null ? value.toString() : null;
+        return;
+      case 18:

Review Comment:
   This changes the ordinal of `fileOrdinal`. This normally doesn't matter as 
we read with a projection. We also changed it a couple of times before. 
Anything I missed?



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