Update 02028_create_select_settings.sql

This commit is contained in:
Alexander Tokmakov 2023-01-16 14:51:32 +03:00 committed by GitHub
parent d859976fbd
commit 26e6cb0899
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1 +1,3 @@
-- Tags: no-ordinary-database
create table test_table engine MergeTree order by a as select a_table.a, b_table.b_arr from (select arrayJoin(range(10000)) as a) a_table cross join (select range(10000) as b_arr) b_table settings max_memory_usage = 1; -- { serverError MEMORY_LIMIT_EXCEEDED }