Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added test case for "DROP DATABASE".
- Loading branch information
Tetsuro IKEDA
committed
Mar 23, 2010
1 parent
fc1444d
commit 776e19c
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| install plugin mroonga soname 'libmroonga.so'; | ||
| drop database if exists mroonga; | ||
| create database mroonga; | ||
| drop database mroonga; | ||
| create database mroonga; | ||
| use mroonga; | ||
| create table t1 (c1 int primary key, c2 varchar(255)) default charset utf8 engine = mroonga; | ||
| create table t2 (c1 int primary key, c2 varchar(255)) default charset utf8 engine = mroonga; | ||
| drop database mroonga; | ||
| create database mroonga; | ||
| use mroonga; | ||
| create table t1 (c1 int primary key, c2 varchar(255)) default charset utf8 engine = mroonga; | ||
| create table t2 (c1 int primary key, c2 varchar(255)) default charset utf8 engine = mroonga; | ||
| drop table t1, t2; | ||
| drop database mroonga; | ||
| uninstall plugin mroonga; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| --disable_warnings | ||
| install plugin mroonga soname 'libmroonga.so'; | ||
| drop database if exists mroonga; | ||
| --enable_warnings | ||
|
|
||
| create database mroonga; | ||
| drop database mroonga; | ||
|
|
||
| create database mroonga; | ||
| use mroonga; | ||
| create table t1 (c1 int primary key, c2 varchar(255)) default charset utf8 engine = mroonga; | ||
| create table t2 (c1 int primary key, c2 varchar(255)) default charset utf8 engine = mroonga; | ||
| drop database mroonga; | ||
|
|
||
| create database mroonga; | ||
| use mroonga; | ||
| create table t1 (c1 int primary key, c2 varchar(255)) default charset utf8 engine = mroonga; | ||
| create table t2 (c1 int primary key, c2 varchar(255)) default charset utf8 engine = mroonga; | ||
| drop table t1, t2; | ||
| drop database mroonga; | ||
|
|
||
|
|
||
| --disable_warnings | ||
| uninstall plugin mroonga; | ||
| --enable_warnings |