diff options
author | unknown <mskold@mysql.com> | 2005-04-22 15:28:23 +0200 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2005-04-22 15:28:23 +0200 |
commit | 639d4295c69dbe32076979c0854ac40b42820223 (patch) | |
tree | a8af3475b78c7c08f7ce31b2bde9079f8920cec3 /mysql-test/r/ndb_database.result | |
parent | e2f5671064639b4dfe22fda07349fa00220a9af2 (diff) | |
download | mariadb-git-639d4295c69dbe32076979c0854ac40b42820223.tar.gz |
Fix for Bug #9318 drop database does not drop ndb tables
Diffstat (limited to 'mysql-test/r/ndb_database.result')
-rw-r--r-- | mysql-test/r/ndb_database.result | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/mysql-test/r/ndb_database.result b/mysql-test/r/ndb_database.result new file mode 100644 index 00000000000..566a3eaf3dd --- /dev/null +++ b/mysql-test/r/ndb_database.result @@ -0,0 +1,27 @@ +drop table if exists t1; +drop database if exists mysqltest; +drop table if exists t1; +drop database if exists mysqltest; +create database mysqltest; +create database mysqltest; +create table mysqltest.t1 (a int primary key, b int) engine=ndb; +use mysqltest; +show tables; +Tables_in_mysqltest +t1 +drop database mysqltest; +use mysqltest; +show tables; +Tables_in_mysqltest +create database mysqltest; +create table mysqltest.t1 (c int, d int primary key) engine=ndb; +use mysqltest; +show tables; +Tables_in_mysqltest +t1 +drop database mysqltest; +use mysqltest; +show tables; +Tables_in_mysqltest +drop table if exists t1; +drop database if exists mysqltest; |