This commit is contained in:
feng lv 2020-12-09 08:11:14 +00:00
parent 50b64ba1f8
commit 7546c611fb
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,9 @@
DROP TABLE IF EXISTS ms;
CREATE TABLE ms (n Int32) ENGINE = MergeTree() ORDER BY n SETTINGS min_compress_block_size = 1024, max_compress_block_size = 10240;
INSERT INTO ms SELECT * FROM numbers(1000);
SELECT COUNT(*) FROM ms;
DROP TABLE ms;