Update 03236_squashing_high_memory.sql

This commit is contained in:
Yarik Briukhovetskyi 2024-09-10 19:53:16 +02:00 committed by GitHub
parent df1821a579
commit 9b517a939f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,7 +5,7 @@ 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;
SET max_memory_usage = 1G;
SET max_memory_usage = '1G';
CREATE TABLE test_table ENGINE MergeTree ORDER BY id AS
SELECT id_values.id1 AS id,