ClickHouse/tests/queries/0_stateless/01910_memory_tracking_topk.sql
2024-05-30 19:41:08 +00:00

7 lines
247 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 MEMORY_LIMIT_EXCEEDED }