mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Fix bad test
This commit is contained in:
parent
db384a163c
commit
9f1b7afd7c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user