Update tests/queries/0_stateless/03236_squashing_high_memory.sql

This commit is contained in:
Antonio Andelic 2024-09-10 19:32:28 +02:00 committed by GitHub
parent caab4dd8b9
commit df1821a579
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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