Skip to content

Commit

Permalink
test: follow operator change
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jun 2, 2016
1 parent c3080d0 commit 3f45c9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion expected/term-search/text-array/combined/bitmapscan.out
Expand Up @@ -22,7 +22,7 @@ SET enable_bitmapscan = on;
SELECT names, pgroonga.score(tags)
FROM tags
WHERE names &^> 'Groon' OR
readings &^~ 'posu';
readings &^~> 'posu';
names | score
-----------------+-------
{PostgreSQL,PG} | 2
Expand Down
2 changes: 1 addition & 1 deletion expected/term-search/text-array/combined/indexscan.out
Expand Up @@ -22,7 +22,7 @@ SET enable_bitmapscan = off;
SELECT names, pgroonga.score(tags)
FROM tags
WHERE names &^> 'Groon' OR
readings &^~ 'posu';
readings &^~> 'posu';
names | score
-----------------+-------
{PostgreSQL,PG} | 0
Expand Down
2 changes: 1 addition & 1 deletion expected/term-search/text-array/combined/seqscan.out
Expand Up @@ -18,7 +18,7 @@ SET enable_bitmapscan = off;
SELECT names, pgroonga.score(tags)
FROM tags
WHERE names &^> 'Groon' OR
readings &^~ 'posu';
readings &^~> 'posu';
names | score
-----------------+-------
{PostgreSQL,PG} | 0
Expand Down

0 comments on commit 3f45c9d

Please sign in to comment.