Skip to content

Commit

Permalink
Merge pull request ClickHouse#71820 from ClickHouse/chesema-fix-00755
Browse files Browse the repository at this point in the history
relax memory limit for 00755_avg_value_size_hint_passing.sql
  • Loading branch information
jsc0218 authored Nov 12, 2024
2 parents 2e3145c + 36dba0c commit b68315e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit b68315e

Please sign in to comment.