soumya-ghosh commented on code in PR #900: URL: https://github.com/apache/iceberg-python/pull/900#discussion_r1667687714
########## pyiceberg/manifest.py: ########## @@ -762,10 +762,10 @@ def add_entry(self, entry: ManifestEntry) -> ManifestWriter: if ( (entry.status == ManifestEntryStatus.ADDED or entry.status == ManifestEntryStatus.EXISTING) - and entry.data_sequence_number is not None - and (self._min_data_sequence_number is None or entry.data_sequence_number < self._min_data_sequence_number) + and entry.sequence_number is not None + and (self._min_data_sequence_number is None or entry.sequence_number < self._min_data_sequence_number) Review Comment: That thought did cross my mind and then I checked the manifest list files and in the actual files it is correct (i.e. `sequence_number` and `min_sequence_number`). We only have (private) variable `_min_data_sequence_number` in `ManifestWriter` class, so I left it as it is. I guess we should standardize them and make the variable names same as fields in spec. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org