mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Make is more easy
This commit is contained in:
parent
c24084a46d
commit
387843411d
@ -6,5 +6,3 @@ Ok (3)
|
||||
2000000
|
||||
1
|
||||
Ok (4)
|
||||
1000000
|
||||
Ok (5)
|
||||
|
@ -34,7 +34,11 @@ SET max_execution_speed_bytes = 0;
|
||||
|
||||
-- Note that 'min_execution_speed' does not count sleeping due to throttling
|
||||
-- with 'max_execution_speed' and similar limits like 'priority' and 'max_network_bandwidth'
|
||||
SET max_execution_speed = 1000000, min_execution_speed = 2000000;
|
||||
|
||||
-- Note: I have to disable this part of the test because it actually can work slower under sanitizers,
|
||||
-- with debug builds and in presense of random system hickups in our CI environment.
|
||||
|
||||
--SET max_execution_speed = 1000000, min_execution_speed = 2000000;
|
||||
-- And this query will work despite the fact that the above settings look contradictory.
|
||||
SELECT count() FROM numbers(1000000);
|
||||
SELECT 'Ok (5)';
|
||||
--SELECT count() FROM numbers(1000000);
|
||||
--SELECT 'Ok (5)';
|
||||
|
Loading…
Reference in New Issue
Block a user