Navigation Menu

Skip to content

Commit

Permalink
test: remove needless "SHOW CREATE TABLE"
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Nov 26, 2018
1 parent 8dacdda commit fb5020a
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 19 deletions.
Expand Up @@ -5,14 +5,6 @@ id BIGINT(20) PRIMARY KEY AUTO_INCREMENT NOT NULL,
name CHAR(30) NOT NULL,
score INT NOT NULL
) DEFAULT CHARSET=UTF8MB4;
SHOW CREATE TABLE scores;
Table Create Table
scores CREATE TABLE `scores` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`name` char(30) NOT NULL,
`score` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=Mroonga DEFAULT CHARSET=utf8mb4
INSERT INTO scores (name, score) VALUES("Taro Yamada", 29);
INSERT INTO scores (name, score) VALUES("Taro Yamada", -12);
INSERT INTO scores (name, score) VALUES("Jiro Yamada", 27);
Expand Down
Expand Up @@ -6,15 +6,6 @@ name CHAR(30) NOT NULL,
score INT NOT NULL,
KEY property (name, score)
) DEFAULT CHARSET=UTF8MB4;
SHOW CREATE TABLE scores;
Table Create Table
scores CREATE TABLE `scores` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`name` char(30) NOT NULL,
`score` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `property` (`name`,`score`)
) ENGINE=Mroonga DEFAULT CHARSET=utf8mb4
INSERT INTO scores (name, score) VALUES("Taro Yamada", 29);
INSERT INTO scores (name, score) VALUES("Taro Yamada", -12);
INSERT INTO scores (name, score) VALUES("Jiro Yamada", 27);
Expand Down
Expand Up @@ -27,7 +27,6 @@ CREATE TABLE scores (
name CHAR(30) NOT NULL,
score INT NOT NULL
) DEFAULT CHARSET=UTF8MB4;
SHOW CREATE TABLE scores;

INSERT INTO scores (name, score) VALUES("Taro Yamada", 29);
INSERT INTO scores (name, score) VALUES("Taro Yamada", -12);
Expand Down
Expand Up @@ -28,7 +28,6 @@ CREATE TABLE scores (
score INT NOT NULL,
KEY property (name, score)
) DEFAULT CHARSET=UTF8MB4;
SHOW CREATE TABLE scores;

INSERT INTO scores (name, score) VALUES("Taro Yamada", 29);
INSERT INTO scores (name, score) VALUES("Taro Yamada", -12);
Expand Down

0 comments on commit fb5020a

Please sign in to comment.