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 7157a8d commit a43fdbc
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 18 deletions.
Expand Up @@ -6,14 +6,6 @@ id int PRIMARY KEY
ALTER TABLE users
ADD COLUMN ���O text,
ADD FULLTEXT INDEX (���O);
SHOW CREATE TABLE users;
Table Create Table
users CREATE TABLE `users` (
`id` int(11) NOT NULL,
`���O` text,
PRIMARY KEY (`id`),
FULLTEXT KEY `���O` (`���O`)
) ENGINE=Mroonga DEFAULT CHARSET=cp932
INSERT INTO users VALUES (1, "��܂�");
INSERT INTO users VALUES (2, "���Ȃ�");
INSERT INTO users VALUES (3, "������");
Expand Down
Expand Up @@ -6,14 +6,6 @@ id int PRIMARY KEY
ALTER TABLE users
ADD COLUMN 名前 text,
ADD FULLTEXT INDEX (名前);
SHOW CREATE TABLE users;
Table Create Table
users CREATE TABLE `users` (
`id` int(11) NOT NULL,
`名前` text,
PRIMARY KEY (`id`),
FULLTEXT KEY `名前` (`名前`)
) ENGINE=Mroonga DEFAULT CHARSET=utf8
INSERT INTO users VALUES (1, "やまだ");
INSERT INTO users VALUES (2, "たなか");
INSERT INTO users VALUES (3, "すずき");
Expand Down
Expand Up @@ -35,7 +35,6 @@ CREATE TABLE users (
ALTER TABLE users
ADD COLUMN ���O text,
ADD FULLTEXT INDEX (���O);
SHOW CREATE TABLE users;

INSERT INTO users VALUES (1, "��܂�");
INSERT INTO users VALUES (2, "���Ȃ�");
Expand Down
Expand Up @@ -35,7 +35,6 @@ CREATE TABLE users (
ALTER TABLE users
ADD COLUMN 名前 text,
ADD FULLTEXT INDEX (名前);
SHOW CREATE TABLE users;

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

0 comments on commit a43fdbc

Please sign in to comment.