mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
18 lines
658 B
SQL
18 lines
658 B
SQL
DROP TABLE IF EXISTS partitioned_by_tuple;
|
|
|
|
CREATE TABLE partitioned_by_tuple (d Date, x UInt8, w String, y UInt8) ENGINE SummingMergeTree (y) PARTITION BY (d, x) ORDER BY (d, x, w);
|
|
|
|
INSERT INTO partitioned_by_tuple VALUES ('2000-01-02', 1, 'first', 3);
|
|
INSERT INTO partitioned_by_tuple VALUES ('2000-01-01', 2, 'first', 2);
|
|
INSERT INTO partitioned_by_tuple VALUES ('2000-01-01', 1, 'first', 1), ('2000-01-01', 1, 'first', 2);
|
|
|
|
OPTIMIZE TABLE partitioned_by_tuple;
|
|
|
|
SELECT * FROM partitioned_by_tuple ORDER BY d, x, w, y;
|
|
|
|
OPTIMIZE TABLE partitioned_by_tuple FINAL;
|
|
|
|
SELECT * FROM partitioned_by_tuple ORDER BY d, x, w, y;
|
|
|
|
DROP TABLE partitioned_by_tuple;
|