mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
8 lines
178 B
SQL
8 lines
178 B
SQL
CREATE TABLE t
|
|
(
|
|
id Int64,
|
|
d String,
|
|
p Map(String, String)
|
|
)
|
|
ENGINE = ReplacingMergeTree order by id settings index_granularity = 0; -- { serverError BAD_ARGUMENTS }
|