This is an automated email from the ASF dual-hosted git repository.

jiafengzheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 089d93534c fix missing comma for properties (#15942)
089d93534c is described below

commit 089d93534c77a5bbdb45f787d9b4f92158d3e0f3
Author: SHHH <[email protected]>
AuthorDate: Tue Jan 17 09:00:00 2023 +0800

    fix missing comma for properties (#15942)
---
 docs/en/docs/data-table/data-model.md    | 2 +-
 docs/zh-CN/docs/data-table/data-model.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/en/docs/data-table/data-model.md 
b/docs/en/docs/data-table/data-model.md
index 42dcfe13a7..052807507a 100644
--- a/docs/en/docs/data-table/data-model.md
+++ b/docs/en/docs/data-table/data-model.md
@@ -334,7 +334,7 @@ CREATE TABLE IF NOT EXISTS example_db.example_tbl
 Unique Key (`user_id`, `username`)
 DISTRIBUTED BY HASH(`user_id`) BUCKETS 1
 PROPERTIES (
-"replication_allocation" = "tag.location.default: 1"
+"replication_allocation" = "tag.location.default: 1",
 "enable_unique_key_merge_on_write" = "true"
 );
 ```
diff --git a/docs/zh-CN/docs/data-table/data-model.md 
b/docs/zh-CN/docs/data-table/data-model.md
index 0215570c68..5eba3346b2 100644
--- a/docs/zh-CN/docs/data-table/data-model.md
+++ b/docs/zh-CN/docs/data-table/data-model.md
@@ -341,7 +341,7 @@ CREATE TABLE IF NOT EXISTS example_db.example_tbl
 UNIQUE KEY(`user_id`, `username`)
 DISTRIBUTED BY HASH(`user_id`) BUCKETS 1
 PROPERTIES (
-"replication_allocation" = "tag.location.default: 1"
+"replication_allocation" = "tag.location.default: 1",
 "enable_unique_key_merge_on_write" = "true"
 );
 ```


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to