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 607472f commit a60143f
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 22 deletions.
Expand Up @@ -6,16 +6,6 @@ average TIME(6),
max TIME(6),
KEY (average)
) DEFAULT CHARSET UTF8;
SHOW CREATE TABLE running_records;
Table Create Table
running_records CREATE TABLE `running_records` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` text,
`average` time(6) DEFAULT NULL,
`max` time(6) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `average` (`average`)
) ENGINE=Mroonga DEFAULT CHARSET=utf8
INSERT INTO running_records (title, average, max)
VALUES ("normal condition", "01:00:00.000001", "01:05:00.000001");
INSERT INTO running_records (title, average, max)
Expand Down
Expand Up @@ -28,7 +28,6 @@ CREATE TABLE running_records (
max TIME(6),
KEY (average)
) DEFAULT CHARSET UTF8;
SHOW CREATE TABLE running_records;

INSERT INTO running_records (title, average, max)
VALUES ("normal condition", "01:00:00.000001", "01:05:00.000001");
Expand Down
10 changes: 0 additions & 10 deletions mysql-test/mroonga/storage/column/time/r/with_index.result
Expand Up @@ -6,16 +6,6 @@ average TIME,
max TIME,
KEY (average)
) DEFAULT CHARSET UTF8;
SHOW CREATE TABLE running_records;
Table Create Table
running_records CREATE TABLE `running_records` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` text,
`average` time DEFAULT NULL,
`max` time DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `average` (`average`)
) ENGINE=Mroonga DEFAULT CHARSET=utf8
INSERT INTO running_records (title, average, max)
VALUES ("normal condition", "01:00:00", "01:05:00");
INSERT INTO running_records (title, average, max)
Expand Down
1 change: 0 additions & 1 deletion mysql-test/mroonga/storage/column/time/t/with_index.test
Expand Up @@ -27,7 +27,6 @@ CREATE TABLE running_records (
max TIME,
KEY (average)
) DEFAULT CHARSET UTF8;
SHOW CREATE TABLE running_records;

INSERT INTO running_records (title, average, max)
VALUES ("normal condition", "01:00:00", "01:05:00");
Expand Down

0 comments on commit a60143f

Please sign in to comment.