mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 11:52:27 +00:00
7 lines
327 B
SQL
7 lines
327 B
SQL
-- Tags: no-replicated-database, no-asan, no-tsan, no-msan, no-ubsan
|
|
|
|
SET max_bytes_before_external_group_by = 0;
|
|
|
|
SET max_memory_usage = '100M', max_rows_to_read = '1G';
|
|
SELECT cityHash64(rand() % 1000) as n, groupBitmapState(number) FROM numbers_mt(200000000) GROUP BY n FORMAT Null; -- { serverError MEMORY_LIMIT_EXCEEDED }
|