Kouhei Sutou
null+****@clear*****
Thu Oct 4 10:25:21 JST 2012
Kouhei Sutou 2011-06-18 11:05:03 +0900 (Sat, 18 Jun 2011) New Revision: 50f65bf6e9387fa38c50ab7d62c6ded9008a1a59 https://github.com/mroonga/mroonga/commit/50f65bf6e9387fa38c50ab7d62c6ded9008a1a59 Log: [wrapper][fulltext][test] add missing COMMENT = 'engine "innodb"'. Modified files: test/sql/t/fulltext_wrapper.test Modified: test/sql/t/fulltext_wrapper.test (+3 -3) =================================================================== --- test/sql/t/fulltext_wrapper.test 2011-06-18 10:20:21 +0900 (190348d) +++ test/sql/t/fulltext_wrapper.test 2011-06-18 11:05:03 +0900 (01bd7fc) @@ -45,7 +45,7 @@ select * from t1 where match(c3) against("+ii" in boolean mode); drop table t1; set names utf8; -create table t1 (c1 int primary key, c2 varchar(255), c3 text, fulltext index(c2), fulltext index(c3)) default charset utf8; +create table t1 (c1 int primary key, c2 varchar(255), c3 text, fulltext index(c2), fulltext index(c3)) default charset utf8 COMMENT = 'engine "innodb"'; insert into t1 values(1, "明日の富士山の天気について","あああああああ"); insert into t1 values(2, "いいいいい","明日の富士山の天気は分かりません"); insert into t1 values(3, "dummy", "dummy"); @@ -54,8 +54,8 @@ select * from t1 where match(c2) against("富士山"); select * from t1 where match(c3) against("富士山"); drop table t1; -create table t1 (c1 int primary key, c2 varchar(100), _score float, fulltext index(c2)) default charset utf8; -create table t2 (c1 int primary key, c2 text, _score float, fulltext index(c2)) default charset utf8; +create table t1 (c1 int primary key, c2 varchar(100), _score float, fulltext index(c2)) default charset utf8 COMMENT = 'engine "innodb"'; +create table t2 (c1 int primary key, c2 text, _score float, fulltext index(c2)) default charset utf8 COMMENT = 'engine "innodb"'; insert into t1 values (1, "aa ii uu ee oo", null); insert into t1 values (2, "ka ki ku ke ko", null); insert into t1 values (3, "aa ii ii ii oo", null); -------------- next part -------------- HTML����������������������������...Download