We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f8145c commit fbdcbd3Copy full SHA for fbdcbd3
1 file changed
pyiceberg/table/inspect.py
@@ -702,6 +702,10 @@ def _all_known_files(self) -> dict[str, set[str]]:
702
_all_known_files["manifest_lists"] = {snapshot.manifest_list for snapshot in snapshots}
703
_all_known_files["statistics"] = {statistic.statistics_path for statistic in self.tbl.metadata.statistics}
704
705
+ metadata_files = {entry.metadata_file for entry in self.tbl.metadata.metadata_log}
706
+ metadata_files.add(self.tbl.metadata_location) # Include current metadata file
707
+ _all_known_files["metadata"] = metadata_files
708
+
709
executor = ExecutorFactory.get_or_create()
710
snapshot_ids = [snapshot.snapshot_id for snapshot in snapshots]
711
files_by_snapshots: Iterator[Set[str]] = executor.map(
0 commit comments