Skip to content

Commit 82877a3

Browse files
committed
impl
1 parent 7c029d1 commit 82877a3

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/queries/0_stateless/02346_text_index_parallel_replicas.sql

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ SET enable_full_text_index = 1;
66
SET use_skip_indexes_on_data_read = 1;
77
SET query_plan_direct_read_from_text_index = 1;
88
SET parallel_replicas_mark_segment_size = 128;
9-
SET parallel_replicas_min_number_of_rows_per_replica = 1000;
109
SET enable_analyzer = 1;
1110

11+
-- With small index granularity, the amount of rows left to read after the index analysis might be too small to utilize parallel replicas. So, we set it to 0.
12+
SET parallel_replicas_min_number_of_rows_per_replica = 0;
13+
1214
DROP TABLE IF EXISTS tab;
1315

1416
CREATE TABLE tab

0 commit comments

Comments
 (0)