We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acd8ed6 commit 2a9c607Copy full SHA for 2a9c607
1 file changed
pyiceberg/table/inspect.py
@@ -704,6 +704,9 @@ def _all_known_files(self) -> dict[str, set[str]]:
704
_all_known_files["manifests"] = set(self.all_manifests(snapshots)["path"].to_pylist())
705
_all_known_files["manifest_lists"] = {snapshot.manifest_list for snapshot in snapshots}
706
_all_known_files["statistics"] = {statistic.statistics_path for statistic in self.tbl.metadata.statistics}
707
+ _all_known_files["partition_statistics"] = {
708
+ statistic.statistics_path for statistic in self.tbl.metadata.partition_statistics
709
+ }
710
711
metadata_files = {entry.metadata_file for entry in self.tbl.metadata.metadata_log}
712
metadata_files.add(self.tbl.metadata_location) # Include current metadata file
0 commit comments