This is an automated email from the ASF dual-hosted git repository.
etudenhoefner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/master by this push:
new f7a7eb2c10 Spec: Mark added_snapshot_id as optional (#8600)
f7a7eb2c10 is described below
commit f7a7eb2c10cb4a9b6b3ea5bfdfc5d085be8b9c31
Author: Eduard Tudenhoefner <[email protected]>
AuthorDate: Thu Sep 21 10:41:19 2023 +0200
Spec: Mark added_snapshot_id as optional (#8600)
---
format/spec.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/format/spec.md b/format/spec.md
index 60c0f99c3f..01903393f8 100644
--- a/format/spec.md
+++ b/format/spec.md
@@ -541,7 +541,7 @@ Manifest list files store `manifest_file`, a struct with
the following fields:
| | _required_ | **`517 content`** | `int` with
meaning: `0: data`, `1: deletes` | The type of files tracked by the manifest,
either data or delete files; 0 for all v1 manifests |
| | _required_ | **`515 sequence_number`** | `long`
| The sequence number when the manifest was added to
the table; use 0 when reading v1 manifest lists |
| | _required_ | **`516 min_sequence_number`** | `long`
| The minimum data sequence number of all live data
or delete files in the manifest; use 0 when reading v1 manifest lists |
-| _required_ | _required_ | **`503 added_snapshot_id`** | `long`
| ID of the snapshot where the manifest file was
added |
+| _optional_ | _required_ | **`503 added_snapshot_id`** | `long`
| ID of the snapshot where the manifest file was
added |
| _optional_ | _required_ | **`504 added_files_count`** | `int`
| Number of entries in the manifest that have status
`ADDED` (1), when `null` this is assumed to be non-zero |
| _optional_ | _required_ | **`505 existing_files_count`** | `int`
| Number of entries in the manifest that have status
`EXISTING` (0), when `null` this is assumed to be non-zero |
| _optional_ | _required_ | **`506 deleted_files_count`** | `int`
| Number of entries in the manifest that have status
`DELETED` (2), when `null` this is assumed to be non-zero |