Update 03236_squashing_high_memory.sql

This commit is contained in:
Yarik Briukhovetskyi 2024-09-10 23:48:32 +02:00 committed by GitHub
parent 63aebfa5d7
commit 3d36f6dce3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@ DROP TABLE IF EXISTS id_values;
DROP TABLE IF EXISTS test_table;
CREATE TABLE id_values ENGINE MergeTree ORDER BY id1 AS
SELECT arrayJoin(range(500000)) AS id1, arrayJoin(range(1000)) AS id2;
SELECT arrayJoin(range(20000)) AS id1, arrayJoin(range(1000)) AS id2;
SET max_memory_usage = '1G';