diff options
author | Alexander Barkov <bar@mariadb.org> | 2014-12-10 08:13:08 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2014-12-10 08:13:08 +0400 |
commit | dd270e43bf84e7dbf2a9ee7c6c3a6de372128e83 (patch) | |
tree | ca8985f1c09a483871af76066068269c55c23647 /mysql-test/r/create_drop_db.result | |
parent | c6d3f8058db30a6621e36b05564a1b2ae68bec7f (diff) | |
download | mariadb-git-dd270e43bf84e7dbf2a9ee7c6c3a6de372128e83.tar.gz |
MDEV-7280 DATABASE: CREATE OR REPLACE
Diffstat (limited to 'mysql-test/r/create_drop_db.result')
-rw-r--r-- | mysql-test/r/create_drop_db.result | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/mysql-test/r/create_drop_db.result b/mysql-test/r/create_drop_db.result new file mode 100644 index 00000000000..aee88703c9b --- /dev/null +++ b/mysql-test/r/create_drop_db.result @@ -0,0 +1,40 @@ +CREATE DATABASE IF NOT EXISTS db1; +affected rows: 1 +CREATE DATABASE IF NOT EXISTS db1; +affected rows: 0 +Warnings: +Note 1007 Can't create database 'db1'; database exists +CREATE TABLE db1.t1 (a INT); +affected rows: 0 +SHOW TABLES IN db1; +Tables_in_db1 +t1 +affected rows: 1 +CREATE OR REPLACE DATABASE db1; +affected rows: 2 +SHOW TABLES IN db1; +Tables_in_db1 +affected rows: 0 +CREATE OR REPLACE DATABASE IF NOT EXISTS db2; +ERROR HY000: Incorrect usage of OR REPLACE and IF NOT EXISTS +DROP DATABASE db1; +affected rows: 0 +DROP DATABASE IF EXISTS db1; +affected rows: 0 +Warnings: +Note 1008 Can't drop database 'db1'; database doesn't exist +DROP DATABASE db1; +ERROR HY000: Can't drop database 'db1'; database doesn't exist +CREATE OR REPLACE DATABASE db1; +affected rows: 1 +SHOW TABLES IN db1; +Tables_in_db1 +affected rows: 0 +CREATE DATABASE db1; +ERROR HY000: Can't create database 'db1'; database exists +DROP DATABASE IF EXISTS db1; +affected rows: 0 +DROP DATABASE IF EXISTS db1; +affected rows: 0 +Warnings: +Note 1008 Can't drop database 'db1'; database doesn't exist |