Skip to content

Commit e570e54

Browse files
committed
Fix #93513
1 parent b62ee77 commit e570e54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/queries/0_stateless/02346_text_index_materialization.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ CREATE TABLE tab
1212
text String
1313
)
1414
ENGINE = MergeTree ORDER BY id
15-
SETTINGS min_bytes_for_wide_part = 0, index_granularity = 1024, merge_max_block_size = 8192, add_minmax_index_for_numeric_columns=0;
15+
SETTINGS min_bytes_for_wide_part = 0, index_granularity = 1024, index_granularity_bytes = 10485760, merge_max_block_size = 8192, add_minmax_index_for_numeric_columns=0;
1616

1717
INSERT INTO tab SELECT number, 'v' || toString(number) FROM numbers(100000);
1818

0 commit comments

Comments
 (0)