ClickHouse/tests/queries/0_stateless/01126_month_partitioning_consistent_code.sql

5 lines
152 B
MySQL
Raw Normal View History

2020-04-12 22:00:10 +00:00
DROP TABLE IF EXISTS mt;
CREATE TABLE mt (d Date, x UInt8) ENGINE = MergeTree(d, x, 8192);
INSERT INTO mt VALUES (52392, 1), (62677, 2);
DROP TABLE mt;