ClickHouse/tests/queries/0_stateless/00963_achimbab.sql
Alexey Milovidov 8f310fb152 Update a test
2023-03-17 21:44:01 +01:00

21 lines
491 B
SQL

-- Tags: no-parallel, long
SET output_format_write_statistics = 0;
select
sum(cnt) > 0 as total,
k[1], k[2]
from
(
select
arrayMap( x -> x % 3 ? toNullable(number%5 + x) : null, range(3)) as k,
number % 4 ? toNullable( rand() ) : Null as cnt
from system.numbers_mt
where number < 1000000
limit 1000000
)
group by k with totals
order by k[2]
SETTINGS max_threads = 100, max_execution_time = 120
format JSON;