Navigation Menu

Skip to content

Commit

Permalink
test: fix wrong result
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 28, 2015
1 parent 9ece27b commit 4967194
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -13,7 +13,7 @@ SET enable_bitmapscan = on;
SELECT id, content
FROM memos
WHERE content LIKE '%Groonga';
id | content
id | content
----+------------------------------------------------------
3 | PGroonga is a PostgreSQL extension that uses Groonga
(1 row)
Expand Down
Expand Up @@ -13,7 +13,7 @@ SET enable_bitmapscan = off;
SELECT id, content
FROM memos
WHERE content LIKE '%Groonga';
id | content
id | content
----+------------------------------------------------------
3 | PGroonga is a PostgreSQL extension that uses Groonga
(1 row)
Expand Down
2 changes: 1 addition & 1 deletion expected/full-text-search/text/single/like/end/seqscan.out
Expand Up @@ -13,7 +13,7 @@ SET enable_bitmapscan = off;
SELECT id, content
FROM memos
WHERE content LIKE '%Groonga';
id | content
id | content
----+------------------------------------------------------
3 | PGroonga is a PostgreSQL extension that uses Groonga
(1 row)
Expand Down
2 changes: 1 addition & 1 deletion sql/full-text-search/text/single/like/end/seqscan.sql
Expand Up @@ -5,7 +5,7 @@ CREATE TABLE memos (

INSERT INTO memos VALUES (1, 'PostgreSQL is a RDBMS');
INSERT INTO memos VALUES (2, 'Groonga is fast full text search engine');
INSERT INTO memos VALUES (3, 'PGroonga is a PostgreSQL extension that uses Groonga.');
INSERT INTO memos VALUES (3, 'PGroonga is a PostgreSQL extension that uses Groonga');
INSERT INTO memos VALUES (4, 'groonga command is provided');

CREATE INDEX grnindex ON memos USING pgroonga (content);
Expand Down

0 comments on commit 4967194

Please sign in to comment.