Navigation Menu

Skip to content

Commit

Permalink
mysql-test: make test stable
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 2, 2016
1 parent ca476e8 commit 4afc8a2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
@@ -1,5 +1,6 @@
DROP TABLE IF EXISTS entries;
DROP TABLE IF EXISTS comments;
DROP DATABASE test;
CREATE DATABASE test;
USE test;
CREATE TABLE comments (
id int unsigned PRIMARY KEY,
content varchar(140) NOT NULL
Expand Down
@@ -1,5 +1,6 @@
DROP TABLE IF EXISTS entries;
DROP TABLE IF EXISTS comments;
DROP DATABASE test;
CREATE DATABASE test;
USE test;
CREATE TABLE comments (
id int unsigned PRIMARY KEY,
content varchar(140) NOT NULL
Expand Down
5 changes: 3 additions & 2 deletions mysql-test/mroonga/storage/foreign_key/insert/t/existent.test
Expand Up @@ -20,8 +20,9 @@
--source ../../../../include/mroonga/load_mroonga_functions.inc

--disable_warnings
DROP TABLE IF EXISTS entries;
DROP TABLE IF EXISTS comments;
DROP DATABASE test;
CREATE DATABASE test;
USE test;
--enable_warnings

CREATE TABLE comments (
Expand Down
Expand Up @@ -20,8 +20,9 @@
--source ../../../../include/mroonga/load_mroonga_functions.inc

--disable_warnings
DROP TABLE IF EXISTS entries;
DROP TABLE IF EXISTS comments;
DROP DATABASE test;
CREATE DATABASE test;
USE test;
--enable_warnings

CREATE TABLE comments (
Expand Down

0 comments on commit 4afc8a2

Please sign in to comment.