summaryrefslogtreecommitdiff
path: root/storage/mroonga/mysql-test/mroonga/storage/r/fulltext_parser_comment.result
diff options
context:
space:
mode:
Diffstat (limited to 'storage/mroonga/mysql-test/mroonga/storage/r/fulltext_parser_comment.result')
-rw-r--r--storage/mroonga/mysql-test/mroonga/storage/r/fulltext_parser_comment.result29
1 files changed, 0 insertions, 29 deletions
diff --git a/storage/mroonga/mysql-test/mroonga/storage/r/fulltext_parser_comment.result b/storage/mroonga/mysql-test/mroonga/storage/r/fulltext_parser_comment.result
deleted file mode 100644
index f2abfe85dd6..00000000000
--- a/storage/mroonga/mysql-test/mroonga/storage/r/fulltext_parser_comment.result
+++ /dev/null
@@ -1,29 +0,0 @@
-drop table if exists diaries;
-create table diaries (
-id int primary key auto_increment,
-body text,
-fulltext index body_index (body)
-comment 'parser "TokenBigramSplitSymbolAlphaDigit"'
-) default charset utf8;
-show create table diaries;
-Table Create Table
-diaries CREATE TABLE `diaries` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `body` text,
- PRIMARY KEY (`id`),
- FULLTEXT KEY `body_index` (`body`) COMMENT 'parser "TokenBigramSplitSymbolAlphaDigit"'
-) ENGINE=Mroonga DEFAULT CHARSET=utf8
-insert into diaries (body) values ("will start groonga!");
-insert into diaries (body) values ("starting groonga...");
-insert into diaries (body) values ("started groonga.");
-select * from diaries;
-id body
-1 will start groonga!
-2 starting groonga...
-3 started groonga.
-select * from diaries where match(body) against("start");
-id body
-1 will start groonga!
-2 starting groonga...
-3 started groonga.
-drop table diaries;