rdblue commented on code in PR #7778:
URL: https://github.com/apache/iceberg/pull/7778#discussion_r1219862150
##########
python/tests/utils/test_manifest.py:
##########
@@ -232,8 +244,8 @@ def test_read_manifest_v2(generated_manifest_file_file_v2:
str) -> None:
assert manifest_list.manifest_length == 7989
assert manifest_list.partition_spec_id == 0
assert manifest_list.content == ManifestContent.DELETES
- assert manifest_list.sequence_number is None # inheritance
- assert manifest_list.min_sequence_number is None # inheritance
+ assert manifest_list.sequence_number == 3 # inherited
+ assert manifest_list.min_sequence_number == 3 # inherited
Review Comment:
The manifest list's sequence numbers aren't inherited. They are always
statically set.
--
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]