Navigation Menu

Skip to content

Commit

Permalink
test: clear database
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Apr 27, 2016
1 parent 6118103 commit 4fdf350
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mysql-test/mroonga/storage/column/multibyte/t/cp932.test
Expand Up @@ -21,6 +21,12 @@
DROP TABLE IF EXISTS users;
--enable_warnings

--disable_query_log
DROP DATABASE test;
CREATE DATABASE test;
USE test;
--enable_query_log

SET NAMES cp932;

CREATE TABLE users (
Expand Down
6 changes: 6 additions & 0 deletions mysql-test/mroonga/storage/column/multibyte/t/utf8.test
Expand Up @@ -21,6 +21,12 @@
DROP TABLE IF EXISTS users;
--enable_warnings

--disable_query_log
DROP DATABASE test;
CREATE DATABASE test;
USE test;
--enable_query_log

SET NAMES utf8;

CREATE TABLE users (
Expand Down
6 changes: 6 additions & 0 deletions mysql-test/mroonga/wrapper/column/multibyte/t/cp932.test
Expand Up @@ -22,6 +22,12 @@
DROP TABLE IF EXISTS users;
--enable_warnings

--disable_query_log
DROP DATABASE test;
CREATE DATABASE test;
USE test;
--enable_query_log

SET NAMES cp932;

CREATE TABLE users (
Expand Down
6 changes: 6 additions & 0 deletions mysql-test/mroonga/wrapper/column/multibyte/t/utf8.test
Expand Up @@ -22,6 +22,12 @@
DROP TABLE IF EXISTS users;
--enable_warnings

--disable_query_log
DROP DATABASE test;
CREATE DATABASE test;
USE test;
--enable_query_log

SET NAMES utf8;

CREATE TABLE users (
Expand Down

0 comments on commit 4fdf350

Please sign in to comment.