rdblue commented on code in PR #6002:
URL: https://github.com/apache/iceberg/pull/6002#discussion_r1002764700
##########
core/src/test/java/org/apache/iceberg/TableTestBase.java:
##########
@@ -519,6 +534,12 @@ void validateManifest(
entry.sequenceNumber().longValue());
}
}
+ if (fileSeqs != null) {
+ V1Assert.assertEquals(
+ "File sequence number should default to 0", (Long) 0L,
entry.fileSequenceNumber());
+ V2Assert.assertEquals(
+ "File sequence number should match", fileSeqs.next(),
entry.fileSequenceNumber());
+ }
Review Comment:
Nit: would be nice to have empty lines before and after the new block.
--
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]