This is an automated email from the ASF dual-hosted git repository. fokko pushed a commit to branch fd-fix in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git
commit fff712ba3ce7118115fe1f7ce50e4cff393a60a8 Author: Fokko Driesprong <[email protected]> AuthorDate: Fri Mar 7 13:58:49 2025 +0100 Make `TableMetadataV2ValidMinimal` more minimal I was checking this while reviewing https://github.com/apache/iceberg-rust/pull/1043 I don't think the `current-snapshot-id` can be zero while there are no snapshots. --- .../iceberg/testdata/table_metadata/TableMetadataV2ValidMinimal.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/iceberg/testdata/table_metadata/TableMetadataV2ValidMinimal.json b/crates/iceberg/testdata/table_metadata/TableMetadataV2ValidMinimal.json index 529b10d1..a6524d1e 100644 --- a/crates/iceberg/testdata/table_metadata/TableMetadataV2ValidMinimal.json +++ b/crates/iceberg/testdata/table_metadata/TableMetadataV2ValidMinimal.json @@ -5,7 +5,6 @@ "last-sequence-number": 34, "last-updated-ms": 1602638573590, "last-column-id": 3, - "current-schema-id": 0, "schemas": [ { "type": "struct", @@ -68,4 +67,4 @@ ] } ] -} \ No newline at end of file +}
