Merge pull request #71820 from ClickHouse/chesema-fix-00755

relax memory limit for 00755_avg_value_size_hint_passing.sql
This commit is contained in:
Shichao Jin 2024-11-12 23:52:28 +00:00 committed by GitHub
commit b68315e594
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;