fix missing comma for properties (#15942)

This commit is contained in:
SHHH
2023-01-17 09:00:00 +08:00
committed by GitHub
parent a3bca46d73
commit 089d93534c
2 changed files with 2 additions and 2 deletions

View File

@ -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"
);
```

View File

@ -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"
);
```