We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38d8b1e commit 3b5644bCopy full SHA for 3b5644b
pyiceberg/table/__init__.py
@@ -2022,9 +2022,9 @@ def projection(self) -> Schema:
2022
return current_schema.select(*self.selected_fields, case_sensitive=self.case_sensitive)
2023
2024
@abstractmethod
2025
- def _do_plan_files(self, from_snapshot_id_exclusive: int, to_snapshot_id: int) -> Iterable[FileScanTask]: ...
+ def _do_plan_files(self, from_snapshot_id_exclusive: int, to_snapshot_id: int) -> Iterable[ScanTask]: ...
2026
2027
- def plan_files(self) -> Iterable[FileScanTask]:
+ def plan_files(self) -> Iterable[ScanTask]:
2028
if (
2029
self.from_snapshot_id_exclusive is None
2030
and self.to_snapshot_id is None
0 commit comments