Fix tests

This commit is contained in:
Alexey Milovidov 2024-07-24 10:53:28 +02:00
parent c2238c5723
commit 2106d4769a
2 changed files with 2 additions and 1 deletions

View File

@ -30,7 +30,6 @@ profiles:
max_columns_to_read: 20K
max_temporary_columns: 20K
max_temporary_non_const_columns: 20K
max_sessions_for_user: 1K
max_rows_in_set: 10G
max_bytes_in_set: 10G
max_rows_in_join: 10G

View File

@ -4,6 +4,8 @@ drop table if exists table_2;
drop table if exists v_numbers;
drop table if exists mv_table;
SET max_rows_to_read = 0;
create table table_1 (x UInt32, y String) engine = MergeTree order by x;
insert into table_1 values (1, 'a'), (2, 'bb'), (3, 'ccc'), (4, 'dddd');