mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
add test
This commit is contained in:
parent
50b64ba1f8
commit
7546c611fb
@ -0,0 +1 @@
|
||||
1000
|
@ -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;
|
Loading…
Reference in New Issue
Block a user