corleyma commented on code in PR #1427: URL: https://github.com/apache/iceberg-python/pull/1427#discussion_r1884524371
########## pyiceberg/table/__init__.py: ########## @@ -1253,6 +1265,22 @@ def __init__( self.start = start or 0 self.length = length or data_file.file_size_in_bytes + def size_in_bytes(self) -> int: + return self.length + sum(f.file_size_in_bytes for f in self.delete_files) + + +@dataclass(init=False) +class CombinedFileScanTask(ScanTask): + """Task representing combined multiple file scan tasks.""" Review Comment: I think this could use a better docstring. -- 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