Navigation Menu

Skip to content

Commit

Permalink
test: remove needless check
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Aug 24, 2016
1 parent e0169c1 commit 607472f
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 14 deletions.
6 changes: 0 additions & 6 deletions mysql-test/mroonga/storage/column/multibyte/r/cp932.result
Expand Up @@ -4,12 +4,6 @@ CREATE TABLE users (
���O text,
FULLTEXT INDEX (���O)
) DEFAULT CHARSET=cp932;
SHOW CREATE TABLE users;
Table Create Table
users CREATE TABLE `users` (
`���O` text,
FULLTEXT KEY `���O` (`���O`)
) ENGINE=Mroonga DEFAULT CHARSET=cp932
INSERT INTO users VALUES ("��܂�");
INSERT INTO users VALUES ("���Ȃ�");
INSERT INTO users VALUES ("������");
Expand Down
6 changes: 0 additions & 6 deletions mysql-test/mroonga/storage/column/multibyte/r/utf8.result
Expand Up @@ -4,12 +4,6 @@ CREATE TABLE users (
名前 text,
FULLTEXT INDEX (名前)
) DEFAULT CHARSET=utf8;
SHOW CREATE TABLE users;
Table Create Table
users CREATE TABLE `users` (
`名前` text,
FULLTEXT KEY `名前` (`名前`)
) ENGINE=Mroonga DEFAULT CHARSET=utf8
INSERT INTO users VALUES ("やまだ");
INSERT INTO users VALUES ("たなか");
INSERT INTO users VALUES ("すずき");
Expand Down
1 change: 0 additions & 1 deletion mysql-test/mroonga/storage/column/multibyte/t/cp932.test
Expand Up @@ -33,7 +33,6 @@ CREATE TABLE users (
���O text,
FULLTEXT INDEX (���O)
) DEFAULT CHARSET=cp932;
SHOW CREATE TABLE users;

INSERT INTO users VALUES ("��܂�");
INSERT INTO users VALUES ("���Ȃ�");
Expand Down
1 change: 0 additions & 1 deletion mysql-test/mroonga/storage/column/multibyte/t/utf8.test
Expand Up @@ -33,7 +33,6 @@ CREATE TABLE users (
名前 text,
FULLTEXT INDEX (名前)
) DEFAULT CHARSET=utf8;
SHOW CREATE TABLE users;

INSERT INTO users VALUES ("やまだ");
INSERT INTO users VALUES ("たなか");
Expand Down

0 comments on commit 607472f

Please sign in to comment.