We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5542479 commit f168633Copy full SHA for f168633
expected/ruminv.out
@@ -10,9 +10,13 @@ INSERT INTO test_invrum VALUES ('(!(a|b))&c'::tsquery);
10
INSERT INTO test_invrum VALUES ('(a|b)&(c|d)'::tsquery);
11
INSERT INTO test_invrum VALUES ('!a'::tsquery);
12
SELECT * FROM test_invrum WHERE q @@ ''::tsvector;
13
- q
14
----
15
-(0 rows)
+ q
+----------------
+ !( 'a' | 'b' )
16
+ !( 'a' & 'b' )
17
+ !'a' | 'b'
18
+ !'a'
19
+(4 rows)
20
21
SELECT * FROM test_invrum WHERE q @@ 'a'::tsvector;
22
q
0 commit comments