EVOLUTION-MANAGER
Edit File: create_table_parser_comment.result
drop table if exists diaries; create table diaries ( id int primary key auto_increment, body text, fulltext index body_index (body) comment 'parser "TokenBigramSplitSymbolAlphaDigit"' ) comment = 'engine "innodb"' default charset utf8; Warnings: Warning 1287 'parser' is deprecated and will be removed in a future release. Please use tokenizer instead insert into diaries (body) values ("will start Groonga!"); Warnings: Warning 1287 'parser' is deprecated and will be removed in a future release. Please use tokenizer instead 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" in boolean mode) order by id; id body 1 will start Groonga! 2 starting Groonga... 3 started Groonga. drop table diaries;