mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Make test faster in debug + coverage mode
This commit is contained in:
parent
482915fa46
commit
16be947390
@ -42,7 +42,7 @@
|
||||
0
|
||||
0
|
||||
-
|
||||
0 1000000000
|
||||
0 1000000000
|
||||
0 1000000000
|
||||
0 1000000000
|
||||
0 10000000
|
||||
0 10000000
|
||||
0 10000000
|
||||
0 10000000
|
||||
|
@ -6,7 +6,7 @@ select zero from zeros(10) settings max_block_size = 3;
|
||||
select '-';
|
||||
select zero from zeros_mt(10) settings max_block_size = 3, max_threads=3;
|
||||
select '-';
|
||||
select sum(zero), count() from (select * from system.zeros limit 1000000000);
|
||||
select sum(zero), count() from (select * from system.zeros_mt limit 1000000000);
|
||||
select sum(zero), count() from zeros(1000000000);
|
||||
select sum(zero), count() from zeros_mt(1000000000);
|
||||
select sum(zero), count() from (select * from system.zeros limit 10000000);
|
||||
select sum(zero), count() from (select * from system.zeros_mt limit 10000000);
|
||||
select sum(zero), count() from zeros(10000000);
|
||||
select sum(zero), count() from zeros_mt(10000000);
|
||||
|
Loading…
Reference in New Issue
Block a user