Navigation Menu

Skip to content

Commit

Permalink
[test] follow test changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jan 6, 2012
1 parent ca83269 commit 4827b03
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions test/sql/suite/mroonga_storage/r/fulltext_order_limit.result
Expand Up @@ -9,20 +9,20 @@ title VARCHAR(255),
content TEXT,
FULLTEXT INDEX(content),
KEY(day)
) DEFAULT CHARSET UTF8;
) DEFAULT CHARSET UTF8 COLLATE UTF8_BIN;
SHOW CREATE TABLE diaries;
Table Create Table
diaries CREATE TABLE `diaries` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`year` int(10) unsigned DEFAULT NULL,
`month` int(10) unsigned DEFAULT NULL,
`day` int(10) unsigned DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`content` text,
`title` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`content` text COLLATE utf8_bin,
PRIMARY KEY (`id`),
KEY `day` (`day`),
FULLTEXT KEY `content` (`content`)
) ENGINE=mroonga DEFAULT CHARSET=utf8
) ENGINE=mroonga DEFAULT CHARSET=utf8 COLLATE=utf8_bin
INSERT INTO diaries VALUES(1, 2011, 11, 9, "Hello", "今日からはじめました。");
INSERT INTO diaries VALUES(2, 2011, 11, 10, "天気", "明日の富士山の天気について");
INSERT INTO diaries VALUES(3, 2011, 11, 11, "富士山", "今日も天気がよくてきれいに見える。");
Expand Down
@@ -1,6 +1,6 @@
drop table if exists t1;
flush status;
create table t1 (c1 int primary key, c2 int, c3 text, _id int, key idx1(c2), fulltext index ft(c3));
create table t1 (c1 int primary key, c2 int, c3 text, _id int, key idx1(c2), fulltext index ft(c3)) default charset utf8 collate utf8_bin;
insert into t1 values(1,10,"aa ii uu ee oo",null);
insert into t1 values(2,20,"ka ki ku ke ko",null);
insert into t1 values(3,30,"ii si ii se ii",null);
Expand Down

0 comments on commit 4827b03

Please sign in to comment.