mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Added failing test
This commit is contained in:
parent
0d37147377
commit
21958c47cd
@ -0,0 +1,14 @@
|
||||
DROP TABLE IF EXISTS merge_tree;
|
||||
CREATE TABLE merge_tree (x UInt8) ENGINE = MergeTree ORDER BY x;
|
||||
INSERT INTO merge_tree SELECT 0 FROM numbers(1000000);
|
||||
|
||||
SET max_threads = 4;
|
||||
SET max_rows_to_read = 1100000;
|
||||
|
||||
SELECT count() FROM merge_tree;
|
||||
|
||||
SET merge_tree_uniform_read_distribution = 0;
|
||||
|
||||
SELECT count() FROM merge_tree;
|
||||
|
||||
DROP TABLE merge_tree;
|
Loading…
Reference in New Issue
Block a user