Skip to content

statistics

StatisticsCommonFields

Bases: IcebergBaseModel

Common fields between table and partition statistics structs found on metadata.

Source code in pyiceberg/table/statistics.py
class StatisticsCommonFields(IcebergBaseModel):
    """Common fields between table and partition statistics structs found on metadata."""

    snapshot_id: int = Field(alias="snapshot-id")
    statistics_path: str = Field(alias="statistics-path")
    file_size_in_bytes: int = Field(alias="file-size-in-bytes")