mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
7 lines
229 B
SQL
7 lines
229 B
SQL
-- Tags: no-replicated-database
|
|
|
|
-- Memory limit must correctly apply, triggering an exception:
|
|
|
|
SET max_memory_usage = '100M';
|
|
SELECT length(topK(5592405)(tuple(number))) FROM numbers(10) GROUP BY number; -- { serverError 241 }
|