You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/queries/0_stateless/00906_low_cardinality_cache.sql
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
SET max_rows_to_read ='100M', max_execution_time =600;
4
4
droptable if exists lc_00906;
5
-
createtablelc_00906 (b LowCardinality(String)) engine=MergeTree order by b SETTINGS index_granularity =8192, index_granularity_bytes ='10Mi';
6
-
insert into lc_00906 select'0123456789'from numbers(100000000);
5
+
createtablelc_00906 (b LowCardinality(String)) engine=MergeTree order by b SETTINGS index_granularity =8192, index_granularity_bytes ='10Mi', vertical_merge_algorithm_min_rows_to_activate=100000000;
6
+
insert into lc_00906 select'0123456789'from numbers(100000000) SETTINGS max_insert_threads=6, max_threads=4;
0 commit comments