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 17a7c9f commit 28466bc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
7 changes: 0 additions & 7 deletions mysql-test/mroonga/wrapper/r/temporary_table.result
Expand Up @@ -3,13 +3,6 @@ CREATE TEMPORARY TABLE diaries (
id INT PRIMARY KEY AUTO_INCREMENT,
title TEXT
) DEFAULT CHARSET=UTF8 COMMENT = 'ENGINE "InnoDB"';
SHOW CREATE TABLE diaries;
Table Create Table
diaries CREATE TEMPORARY TABLE `diaries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` text,
PRIMARY KEY (`id`)
) ENGINE=Mroonga DEFAULT CHARSET=utf8 COMMENT='ENGINE "InnoDB"'
INSERT INTO diaries (title) VALUES ("clear day");
INSERT INTO diaries (title) VALUES ("rainy day");
INSERT INTO diaries (title) VALUES ("cloudy day");
Expand Down
1 change: 0 additions & 1 deletion mysql-test/mroonga/wrapper/t/temporary_table.test
Expand Up @@ -27,7 +27,6 @@ CREATE TEMPORARY TABLE diaries (
id INT PRIMARY KEY AUTO_INCREMENT,
title TEXT
) DEFAULT CHARSET=UTF8 COMMENT = 'ENGINE "InnoDB"';
SHOW CREATE TABLE diaries;

INSERT INTO diaries (title) VALUES ("clear day");
INSERT INTO diaries (title) VALUES ("rainy day");
Expand Down

0 comments on commit 28466bc

Please sign in to comment.