This is an automated email from the ASF dual-hosted git repository. yihua pushed a commit to branch branch-0.x in repository https://gitbox.apache.org/repos/asf/hudi.git
commit 6c298a0f0f9aac17f1d825e42af4f14117bb31e5 Author: FreeTao <[email protected]> AuthorDate: Sun Apr 14 18:36:22 2024 -0700 [HUDI-7615] Mark a few write configs with the correct sinceVersion (#11012) --- .../main/java/org/apache/hudi/keygen/constant/KeyGeneratorOptions.java | 1 + 1 file changed, 1 insertion(+) diff --git a/hudi-common/src/main/java/org/apache/hudi/keygen/constant/KeyGeneratorOptions.java b/hudi-common/src/main/java/org/apache/hudi/keygen/constant/KeyGeneratorOptions.java index db4a9162129..3273a4fc49b 100644 --- a/hudi-common/src/main/java/org/apache/hudi/keygen/constant/KeyGeneratorOptions.java +++ b/hudi-common/src/main/java/org/apache/hudi/keygen/constant/KeyGeneratorOptions.java @@ -63,6 +63,7 @@ public class KeyGeneratorOptions extends HoodieConfig { public static final ConfigProperty<String> KEYGENERATOR_CONSISTENT_LOGICAL_TIMESTAMP_ENABLED = ConfigProperty .key("hoodie.datasource.write.keygenerator.consistent.logical.timestamp.enabled") .defaultValue("false") + .sinceVersion("0.10.1") .markAdvanced() .withDocumentation("When set to true, consistent value will be generated for a logical timestamp type column, " + "like timestamp-millis and timestamp-micros, irrespective of whether row-writer is enabled. Disabled by default so "
