Added failing test

This commit is contained in:
Alexey Milovidov 2019-07-15 23:06:20 +03:00
parent 0d37147377
commit 21958c47cd

View File

@ -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;