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


##########
core/src/main/java/org/apache/iceberg/GenericManifestEntry.java:
##########
@@ -44,14 +45,16 @@ private GenericManifestEntry(GenericManifestEntry<F> 
toCopy, boolean fullCopy) {
     this.schema = toCopy.schema;
     this.status = toCopy.status;
     this.snapshotId = toCopy.snapshotId;
+    this.dataSequenceNumber = toCopy.dataSequenceNumber;
     this.sequenceNumber = toCopy.sequenceNumber;
     this.file = toCopy.file().copy(fullCopy);
   }
 
-  ManifestEntry<F> wrapExisting(Long newSnapshotId, Long newSequenceNumber, F 
newFile) {
+  ManifestEntry<F> wrapExisting(Long newSnapshotId, Long 
newDataSequenceNumber, F newFile) {

Review Comment:
   @chenjunjiedada, I recall you had a PR for propagating seq numbers to 
`ContentFile`. I'll reach out once this part is done so that you can rebase 
your work.



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