Skip to content

Commit eb3e751

Browse files
Backport ClickHouse#92009 to 25.8: Fix flaky 00906_low_cardinality_cache
1 parent 6ba0c86 commit eb3e751

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/queries/0_stateless/00906_low_cardinality_cache.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
SET max_rows_to_read = '100M', max_execution_time = 600;
44
drop table if exists lc_00906;
5-
create table lc_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+
create table lc_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;
77
select count(), b from lc_00906 group by b;
88
drop table if exists lc_00906;

0 commit comments

Comments
 (0)