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 0a49dae commit 104fb94
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 18 deletions.
Expand Up @@ -3,13 +3,6 @@ CREATE TABLE diaries (
day DATE PRIMARY KEY,
title TEXT
) DEFAULT CHARSET=UTF8;
SHOW CREATE TABLE diaries;
Table Create Table
diaries CREATE TABLE `diaries` (
`day` date NOT NULL,
`title` text,
PRIMARY KEY (`day`)
) ENGINE=Mroonga DEFAULT CHARSET=utf8
INSERT INTO diaries (day, title)
VALUES ("2012-02-14", "clear day")
ON DUPLICATE KEY UPDATE title = "clear day (duplicated)";
Expand Down
Expand Up @@ -5,15 +5,6 @@ day DATE,
title TEXT,
UNIQUE KEY day (day)
) DEFAULT CHARSET=UTF8;
SHOW CREATE TABLE diaries;
Table Create Table
diaries CREATE TABLE `diaries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`day` date DEFAULT NULL,
`title` text,
PRIMARY KEY (`id`),
UNIQUE KEY `day` (`day`)
) ENGINE=Mroonga DEFAULT CHARSET=utf8
INSERT INTO diaries (day, title)
VALUES ("2012-02-14", "clear day1")
ON DUPLICATE KEY UPDATE title = "clear day1 (duplicated)";
Expand Down
Expand Up @@ -24,7 +24,6 @@ CREATE TABLE diaries (
day DATE PRIMARY KEY,
title TEXT
) DEFAULT CHARSET=UTF8;
SHOW CREATE TABLE diaries;

INSERT INTO diaries (day, title)
VALUES ("2012-02-14", "clear day")
Expand Down
Expand Up @@ -26,7 +26,6 @@ CREATE TABLE diaries (
title TEXT,
UNIQUE KEY day (day)
) DEFAULT CHARSET=UTF8;
SHOW CREATE TABLE diaries;

INSERT INTO diaries (day, title)
VALUES ("2012-02-14", "clear day1")
Expand Down

0 comments on commit 104fb94

Please sign in to comment.