Navigation Menu

Skip to content

Commit

Permalink
[wrapper][fulltext][test] add missing COMMENT = 'engine "innodb"'.
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jun 18, 2011
1 parent 5fae882 commit 50f65bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/sql/t/fulltext_wrapper.test
Expand Up @@ -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");
Expand All @@ -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);
Expand Down

0 comments on commit 50f65bf

Please sign in to comment.