ClickHouse/dbms/tests/queries/0_stateless/00616_final_single_part.sql

27 lines
699 B
MySQL
Raw Normal View History

2019-06-03 17:36:27 +00:00
DROP TABLE IF EXISTS test_00616;
DROP TABLE IF EXISTS replacing_00616;
2019-06-03 17:36:27 +00:00
CREATE TABLE test_00616
(
date Date,
x Int32,
ver UInt64
)
ENGINE = MergeTree(date, x, 4096);
2019-06-03 17:36:27 +00:00
INSERT INTO test_00616 VALUES ('2018-03-21', 1, 1), ('2018-03-21', 1, 2);
CREATE TABLE replacing_00616 ENGINE = ReplacingMergeTree(date, x, 4096, ver) AS SELECT * FROM test_00616;
2019-06-03 17:36:27 +00:00
SELECT * FROM test_00616 ORDER BY ver;
2019-06-03 17:36:27 +00:00
SELECT * FROM replacing_00616 ORDER BY ver;
SELECT * FROM replacing_00616 FINAL ORDER BY ver;
2019-06-03 17:36:27 +00:00
OPTIMIZE TABLE replacing_00616 PARTITION '201803' FINAL;
2019-06-03 17:36:27 +00:00
SELECT * FROM replacing_00616 ORDER BY ver;
SELECT * FROM replacing_00616 FINAL ORDER BY ver;
2019-06-03 17:36:27 +00:00
DROP TABLE test_00616;
DROP TABLE replacing_00616;