Skip to content

Commit 6ae10b7

Browse files
committed
Fix test with parallel replicas
1 parent 97709fe commit 6ae10b7

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
1 Well, Hello ClickHouse !
22
2 Well, Hello World !
3-
Granules: 6/6
4-
Granules: 2/6
5-
Granules: 6/6
6-
Granules: 2/6
3+
Granules: 6/6
4+
Granules: 2/6
5+
Granules: 6/6
6+
Granules: 2/6
77
---
88
1 Well, Hello ClickHouse !
99
2 Well, Hello World !
1010
6 True World Champion
11-
Granules: 6/6
12-
Granules: 3/6
13-
Granules: 6/6
14-
Granules: 3/6
11+
Granules: 6/6
12+
Granules: 3/6
13+
Granules: 6/6
14+
Granules: 3/6
1515
---
1616
5 Its An OLAP Database
17-
Granules: 6/6
18-
Granules: 1/6
19-
Granules: 6/6
20-
Granules: 1/6
17+
Granules: 6/6
18+
Granules: 1/6
19+
Granules: 6/6
20+
Granules: 1/6

tests/queries/0_stateless/02346_gin_index_match_predicate.sql

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ SELECT * FROM tab WHERE match(str, ' Hello (ClickHouse|World) ') ORDER BY id;
2222
-- Required string: ' Hello '
2323
-- Alternatives: ' Hello ClickHouse ', ' Hello World '
2424

25-
SELECT *
25+
SELECT trim(explain)
2626
FROM
2727
(
2828
EXPLAIN PLAN indexes=1
@@ -33,7 +33,7 @@ WHERE
3333
SETTINGS
3434
enable_analyzer = 0;
3535

36-
SELECT *
36+
SELECT trim(explain)
3737
FROM
3838
(
3939
EXPLAIN PLAN indexes=1
@@ -52,7 +52,7 @@ SELECT * FROM tab WHERE match(str, '.* (ClickHouse|World) ') ORDER BY id;
5252
-- Required string: -
5353
-- Alternatives: ' ClickHouse ', ' World '
5454

55-
SELECT *
55+
SELECT trim(explain)
5656
FROM
5757
(
5858
EXPLAIN PLAN indexes = 1
@@ -63,7 +63,7 @@ WHERE
6363
SETTINGS
6464
enable_analyzer = 0;
6565

66-
SELECT *
66+
SELECT trim(explain)
6767
FROM
6868
(
6969
EXPLAIN PLAN indexes = 1
@@ -82,7 +82,7 @@ SELECT * FROM tab WHERE match(str, ' OLAP .*') ORDER BY id;
8282
-- Required string: ' OLAP '
8383
-- Alternatives: -
8484

85-
SELECT *
85+
SELECT trim(explain)
8686
FROM
8787
(
8888
EXPLAIN PLAN indexes = 1
@@ -93,7 +93,7 @@ WHERE
9393
SETTINGS
9494
enable_analyzer = 0;
9595

96-
SELECT *
96+
SELECT trim(explain)
9797
FROM
9898
(
9999
EXPLAIN PLAN indexes = 1

0 commit comments

Comments
 (0)