mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
5 lines
239 B
SQL
5 lines
239 B
SQL
-- Tags: no-replicated-database, no-asan, no-tsan, no-msan, no-ubsan
|
|
|
|
SET max_memory_usage = '100M';
|
|
SELECT cityHash64(rand() % 1000) as n, groupBitmapState(number) FROM numbers_mt(200000000) GROUP BY n FORMAT Null; -- { serverError 241 }
|