This is an automated email from the ASF dual-hosted git repository. fokko pushed a commit to branch fd-spec-id in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
commit e0ddfa39d5d6055750230fa1ce9a79358e12c7f0 Author: Fokko Driesprong <[email protected]> AuthorDate: Mon May 27 14:02:45 2024 +0200 `spec_id` is required --- pyiceberg/manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyiceberg/manifest.py b/pyiceberg/manifest.py index 3b8138b6..19c94522 100644 --- a/pyiceberg/manifest.py +++ b/pyiceberg/manifest.py @@ -338,7 +338,7 @@ class DataFile(Record): split_offsets: Optional[List[int]] equality_ids: Optional[List[int]] sort_order_id: Optional[int] - spec_id: Optional[int] + spec_id: int def __setattr__(self, name: str, value: Any) -> None: """Assign a key/value to a DataFile."""
