mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 18:12:02 +00:00
5 lines
202 B
SQL
5 lines
202 B
SQL
-- Tags: no-replicated-database
|
|
|
|
SET max_memory_usage = '50M';
|
|
SELECT cityHash64(rand() % 1000) as n, groupBitmapState(number) FROM numbers_mt(2000000000) GROUP BY n FORMAT Null; -- { serverError 241 }
|