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 e8be5ab commit 85ca48cCopy full SHA for 85ca48c
pyiceberg/table/__init__.py
@@ -1898,9 +1898,9 @@ def projection(self) -> Schema:
1898
return current_schema.select(*self.selected_fields, case_sensitive=self.case_sensitive)
1899
1900
@abstractmethod
1901
- 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]: ...
1902
1903
- def plan_files(self) -> Iterable[FileScanTask]:
+ def plan_files(self) -> Iterable[ScanTask]:
1904
if (
1905
self.from_snapshot_id_exclusive is None
1906
and self.to_snapshot_id is None
0 commit comments