Navigation Menu

Skip to content

Commit

Permalink
[test][wrapper] add a SELECT without fulltext search.
Browse files Browse the repository at this point in the history
refs #1191
  • Loading branch information
kou committed Dec 8, 2011
1 parent e52631d commit a0c5d39
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/sql/suite/groonga_wrapper/r/repair_table.result
Expand Up @@ -27,6 +27,11 @@ REPAIR TABLE diaries;
Table Op Msg_type Msg_text
test.diaries repair note Table does not support optimize, doing recreate + analyze instead
test.diaries repair status OK
SELECT * FROM diaries;
id title body
1 survey will start groonga!
2 groonga (1) starting groonga...
3 groonga (2) started groonga.
SELECT * FROM diaries WHERE MATCH(body) AGAINST("starting");
id title body
2 groonga (1) starting groonga...
Expand Down
2 changes: 2 additions & 0 deletions test/sql/suite/groonga_wrapper/t/repair_table.test
Expand Up @@ -45,6 +45,8 @@ SELECT * FROM diaries WHERE MATCH(body) AGAINST("starting");

REPAIR TABLE diaries;

SELECT * FROM diaries;

SELECT * FROM diaries WHERE MATCH(body) AGAINST("starting");

DROP TABLE diaries;
Expand Down

0 comments on commit a0c5d39

Please sign in to comment.