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/flink-table-store.git


The following commit(s) were added to refs/heads/master by this push:
     new 5e514aa6 [FLINK-30028]A little fix with document about periods in 
log.changelog-mode description
5e514aa6 is described below

commit 5e514aa6ee1f44ea39298b85e5f636b1a1704f33
Author: Stan <[email protected]>
AuthorDate: Tue Nov 15 17:40:13 2022 +0800

    [FLINK-30028]A little fix with document about periods in log.changelog-mode 
description
    
    This closes #381
---
 docs/layouts/shortcodes/generated/core_configuration.html               | 2 +-
 .../src/main/java/org/apache/flink/table/store/CoreOptions.java         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/layouts/shortcodes/generated/core_configuration.html 
b/docs/layouts/shortcodes/generated/core_configuration.html
index 81685206..4a1a6b26 100644
--- a/docs/layouts/shortcodes/generated/core_configuration.html
+++ b/docs/layouts/shortcodes/generated/core_configuration.html
@@ -96,7 +96,7 @@
             <td><h5>log.changelog-mode</h5></td>
             <td style="word-wrap: break-word;">auto</td>
             <td><p>Enum</p></td>
-            <td>Specify the log changelog mode for table.<br /><br />Possible 
values:<ul><li>"auto": Upsert for table with primary key, all for table without 
primary key..</li><li>"all": The log system stores all changes including 
UPDATE_BEFORE.</li><li>"upsert": The log system does not store the 
UPDATE_BEFORE changes, the log consumed job will automatically add the 
normalized node, relying on the state to generate the required 
update_before.</li></ul></td>
+            <td>Specify the log changelog mode for table.<br /><br />Possible 
values:<ul><li>"auto": Upsert for table with primary key, all for table without 
primary key.</li><li>"all": The log system stores all changes including 
UPDATE_BEFORE.</li><li>"upsert": The log system does not store the 
UPDATE_BEFORE changes, the log consumed job will automatically add the 
normalized node, relying on the state to generate the required 
update_before.</li></ul></td>
         </tr>
         <tr>
             <td><h5>log.consistency</h5></td>
diff --git 
a/flink-table-store-core/src/main/java/org/apache/flink/table/store/CoreOptions.java
 
b/flink-table-store-core/src/main/java/org/apache/flink/table/store/CoreOptions.java
index eb5f49d7..44164ace 100644
--- 
a/flink-table-store-core/src/main/java/org/apache/flink/table/store/CoreOptions.java
+++ 
b/flink-table-store-core/src/main/java/org/apache/flink/table/store/CoreOptions.java
@@ -628,7 +628,7 @@ public class CoreOptions implements Serializable {
 
     /** Specifies the log changelog mode for table. */
     public enum LogChangelogMode implements DescribedEnum {
-        AUTO("auto", "Upsert for table with primary key, all for table without 
primary key.."),
+        AUTO("auto", "Upsert for table with primary key, all for table without 
primary key."),
 
         ALL("all", "The log system stores all changes including 
UPDATE_BEFORE."),
 

Reply via email to