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 25, 2016
1 parent 26f6e05 commit 557cb3c
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 18 deletions.
8 changes: 0 additions & 8 deletions mysql-test/mroonga/wrapper/column/multibyte/r/cp932.result
Expand Up @@ -5,14 +5,6 @@ id int unsigned PRIMARY KEY AUTO_INCREMENT,
���O text,
FULLTEXT INDEX (���O)
) DEFAULT CHARSET=cp932 COMMENT='Engine "InnoDB"';
SHOW CREATE TABLE users;
Table Create Table
users CREATE TABLE `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`���O` text,
PRIMARY KEY (`id`),
FULLTEXT KEY `���O` (`���O`)
) ENGINE=Mroonga DEFAULT CHARSET=cp932 COMMENT='Engine "InnoDB"'
INSERT INTO users (���O) VALUES ("��܂�");
INSERT INTO users (���O) VALUES ("���Ȃ�");
INSERT INTO users (���O) VALUES ("������");
Expand Down
8 changes: 0 additions & 8 deletions mysql-test/mroonga/wrapper/column/multibyte/r/utf8.result
Expand Up @@ -5,14 +5,6 @@ id int unsigned PRIMARY KEY AUTO_INCREMENT,
名前 text,
FULLTEXT INDEX (名前)
) DEFAULT CHARSET=utf8 COMMENT='Engine "InnoDB"';
SHOW CREATE TABLE users;
Table Create Table
users CREATE TABLE `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`名前` text,
PRIMARY KEY (`id`),
FULLTEXT KEY `名前` (`名前`)
) ENGINE=Mroonga DEFAULT CHARSET=utf8 COMMENT='Engine "InnoDB"'
INSERT INTO users (名前) VALUES ("やまだ");
INSERT INTO users (名前) VALUES ("たなか");
INSERT INTO users (名前) VALUES ("すずき");
Expand Down
1 change: 0 additions & 1 deletion mysql-test/mroonga/wrapper/column/multibyte/t/cp932.test
Expand Up @@ -35,7 +35,6 @@ CREATE TABLE users (
���O text,
FULLTEXT INDEX (���O)
) DEFAULT CHARSET=cp932 COMMENT='Engine "InnoDB"';
SHOW CREATE TABLE users;

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

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

0 comments on commit 557cb3c

Please sign in to comment.