@@ -43,50 +43,6 @@ pub(crate) static ONE_MINUTE_MS: i64 = 60_000;
43
43
pub ( crate ) static EMPTY_SNAPSHOT_ID : i64 = -1 ;
44
44
pub ( crate ) static INITIAL_SEQUENCE_NUMBER : i64 = 0 ;
45
45
46
- // public static final String FORMAT_VERSION = "format-version";
47
-
48
- // /** Reserved table property for table UUID. */
49
- // public static final String UUID = "uuid";
50
-
51
- // /** Reserved table property for the total number of snapshots. */
52
- // public static final String SNAPSHOT_COUNT = "snapshot-count";
53
-
54
- // /** Reserved table property for current snapshot summary. */
55
- // public static final String CURRENT_SNAPSHOT_SUMMARY = "current-snapshot-summary";
56
-
57
- // /** Reserved table property for current snapshot id. */
58
- // public static final String CURRENT_SNAPSHOT_ID = "current-snapshot-id";
59
-
60
- // /** Reserved table property for current snapshot timestamp. */
61
- // public static final String CURRENT_SNAPSHOT_TIMESTAMP = "current-snapshot-timestamp-ms";
62
-
63
- // /** Reserved table property for the JSON representation of current schema. */
64
- // public static final String CURRENT_SCHEMA = "current-schema";
65
-
66
- // /** Reserved table property for the JSON representation of current(default) partition spec. */
67
- // public static final String DEFAULT_PARTITION_SPEC = "default-partition-spec";
68
-
69
- // /** Reserved table property for the JSON representation of current(default) sort order. */
70
- // public static final String DEFAULT_SORT_ORDER = "default-sort-order";
71
-
72
- /**
73
- * Reserved Iceberg table properties list.
74
- *
75
- * <p>Reserved table properties are only used to control behaviors when creating or updating a
76
- * table. The value of these properties are not persisted as a part of the table metadata.
77
- */
78
- // public static final Set<String> RESERVED_PROPERTIES =
79
- // ImmutableSet.of(
80
- // FORMAT_VERSION,
81
- // UUID,
82
- // SNAPSHOT_COUNT,
83
- // CURRENT_SNAPSHOT_ID,
84
- // CURRENT_SNAPSHOT_SUMMARY,
85
- // CURRENT_SNAPSHOT_TIMESTAMP,
86
- // CURRENT_SCHEMA,
87
- // DEFAULT_PARTITION_SPEC,
88
- // DEFAULT_SORT_ORDER);
89
-
90
46
/// Reserved table property for table format version.
91
47
///
92
48
/// Iceberg will default a new table's format version to the latest stable and recommended
0 commit comments