relax memory limit

This commit is contained in:
Sema Checherinda 2024-11-12 15:29:09 +01:00
parent d38bd0df0a
commit 36dba0cae4

View File

@ -5,7 +5,7 @@ SET max_block_size = 1000;
SET max_memory_usage = 1000000000;
INSERT INTO size_hint SELECT arrayMap(x -> 'Hello', range(1000)) FROM numbers(10000);
SET max_memory_usage = 100000000, max_threads = 2;
SET max_memory_usage = 105000000, max_threads = 2;
SELECT count(), sum(length(s)) FROM size_hint;
DROP TABLE size_hint;