Fix bad test

This commit is contained in:
Alexey Milovidov 2021-06-06 16:38:53 +03:00
parent db384a163c
commit 9f1b7afd7c

View File

@ -3,9 +3,11 @@ DROP TABLE IF EXISTS ES;
create table ES(A String) Engine=MergeTree order by tuple();
insert into ES select toString(number) from numbers(10000000);
SET max_execution_time = 100, max_execution_speed = 1000000;
SET max_threads = 1;
SET max_block_size = 1000000;
SET max_execution_time = 100,
timeout_before_checking_execution_speed = 100,
max_execution_speed = 1000000,
max_threads = 1,
max_block_size = 1000000;
-- Exception about execution speed is not thrown from these queries.
SELECT * FROM ES LIMIT 1 format Null;