CLICKHOUSE-3839 add tests

This commit is contained in:
VadimPE 2018-09-10 13:20:21 +03:00
parent 10ab9587a2
commit cc50e810fc
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,4 @@
197004
197007
197010

View File

@ -0,0 +1,10 @@
DROP TABLE IF EXISTS test.partition_id;
CREATE TABLE IF NOT EXISTS test.partition_id (d Date DEFAULT '2000-01-01', x UInt64) ENGINE = MergeTree(d, x, 5);
INSERT INTO test.partition_id VALUES (100, 1), (200, 2), (300, 3);
SELECT _partition_id FROM test.partition_id ORDER BY x;
DROP TABLE IF EXISTS test.partition_id;