From 089d93534c77a5bbdb45f787d9b4f92158d3e0f3 Mon Sep 17 00:00:00 2001 From: SHHH <781240052@qq.com> Date: Tue, 17 Jan 2023 09:00:00 +0800 Subject: [PATCH] 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" ); ```