ClickHouse/tests/queries/0_stateless/00660_optimize_final_without_partition.sql
Ivan 97f2a2213e
Move all folders inside /dbms one level up (#9974)
* Move some code outside dbms/src folder
* Fix paths
2020-04-02 02:51:21 +03:00

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;