Add tests

This commit is contained in:
alesapin 2019-10-30 17:51:30 +03:00
parent 2b5ef8bdef
commit 7f4e982d13
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,3 @@
1000000
1000000
1000000

View File

@ -0,0 +1,22 @@
CREATE TABLE test
(
`x` Tuple(UInt64, UInt64)
)
ENGINE = MergeTree
ORDER BY x;
INSERT INTO test SELECT (number, number) FROM numbers(1000000);
SELECT COUNT() FROM test;
ALTER TABLE test DETACH PARTITION tuple();
ALTER TABLE test ATTACH PARTITION tuple();
SELECT COUNT() FROM test;
DETACH TABLE test;
ATTACH TABLE test;
SELECT COUNT() FROM test;