Skip to content

Commit 0700d5d

Browse files
author
Artur Zakirov
committed
Fix tests for 621110eb3f35e4b8a354cd710d4a824d2124f223
1 parent eaffea7 commit 0700d5d

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

expected/rum.out

+6
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,12 @@ SELECT count(*) FROM test_rum WHERE a @@ to_tsquery('pg_catalog.english', '(comp
7676
2
7777
(1 row)
7878

79+
SELECT count(*) FROM test_rum WHERE a @@ to_tsquery('pg_catalog.english', '(gave | half) <-> way');
80+
count
81+
-------
82+
2
83+
(1 row)
84+
7985
SELECT count(*) FROM test_rum WHERE a @@ to_tsquery('pg_catalog.english',
8086
'def <-> fgr');
8187
count

sql/rum.sql

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ SELECT count(*) FROM test_rum WHERE a @@ to_tsquery('pg_catalog.english', 'knew&
2727
SELECT count(*) FROM test_rum WHERE a @@ to_tsquery('pg_catalog.english', 'among');
2828
SELECT count(*) FROM test_rum WHERE a @@ to_tsquery('pg_catalog.english', 'structure&ancient');
2929
SELECT count(*) FROM test_rum WHERE a @@ to_tsquery('pg_catalog.english', '(complimentary|sight)&(sending|heart)');
30+
SELECT count(*) FROM test_rum WHERE a @@ to_tsquery('pg_catalog.english', '(gave | half) <-> way');
3031
SELECT count(*) FROM test_rum WHERE a @@ to_tsquery('pg_catalog.english',
3132
'def <-> fgr');
3233
SELECT count(*) FROM test_rum WHERE a @@ to_tsquery('pg_catalog.english',

0 commit comments

Comments
 (0)