Merge pull request #47029 from ClickHouse/DanRoscigno-patch-5

Remove extra `]`
This commit is contained in:
robot-ch-test-poll3 2023-02-28 19:59:07 +01:00 committed by GitHub
commit afac2801a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -267,7 +267,7 @@ You can define a [primary key](../../../engines/table-engines/mergetree-family/m
CREATE TABLE db.table_name
(
name1 type1, name2 type2, ...,
PRIMARY KEY(expr1[, expr2,...])]
PRIMARY KEY(expr1[, expr2,...])
)
ENGINE = engine;
```