This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 270f1c977b [core] Mark row-tracking.enabled and data-evolution.enabled
as Immutable (#6217)
270f1c977b is described below
commit 270f1c977baa4fd62a4e3c2ad9991c0174257108
Author: Zouxxyy <[email protected]>
AuthorDate: Tue Sep 9 08:53:03 2025 +0800
[core] Mark row-tracking.enabled and data-evolution.enabled as Immutable
(#6217)
---
paimon-api/src/main/java/org/apache/paimon/CoreOptions.java | 2 ++
1 file changed, 2 insertions(+)
diff --git a/paimon-api/src/main/java/org/apache/paimon/CoreOptions.java
b/paimon-api/src/main/java/org/apache/paimon/CoreOptions.java
index 626ca67a31..5d1b168100 100644
--- a/paimon-api/src/main/java/org/apache/paimon/CoreOptions.java
+++ b/paimon-api/src/main/java/org/apache/paimon/CoreOptions.java
@@ -1923,12 +1923,14 @@ public class CoreOptions implements Serializable {
+ "in 'sink.clustering.by-columns'.
'order' is used for 1 column, 'zorder' for less than 5 columns, "
+ "and 'hilbert' for 5 or more columns.");
+ @Immutable
public static final ConfigOption<Boolean> ROW_TRACKING_ENABLED =
key("row-tracking.enabled")
.booleanType()
.defaultValue(false)
.withDescription("Whether enable unique row id for append
table.");
+ @Immutable
public static final ConfigOption<Boolean> DATA_EVOLUTION_ENABLED =
key("data-evolution.enabled")
.booleanType()