Make is more easy

This commit is contained in:
Alexey Milovidov 2020-05-30 19:46:58 +03:00
parent c24084a46d
commit 387843411d
2 changed files with 7 additions and 5 deletions

View File

@ -6,5 +6,3 @@ Ok (3)
2000000
1
Ok (4)
1000000
Ok (5)

View File

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