2020-04-12 22:00:10 +00:00
|
|
|
DROP TABLE IF EXISTS mt;
|
2022-06-23 08:37:52 +00:00
|
|
|
set allow_deprecated_syntax_for_merge_tree=1;
|
2020-04-12 22:00:10 +00:00
|
|
|
CREATE TABLE mt (d Date, x UInt8) ENGINE = MergeTree(d, x, 8192);
|
|
|
|
INSERT INTO mt VALUES (52392, 1), (62677, 2);
|
|
|
|
DROP TABLE mt;
|