From dd270e43bf84e7dbf2a9ee7c6c3a6de372128e83 Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Wed, 10 Dec 2014 08:13:08 +0400 Subject: MDEV-7280 DATABASE: CREATE OR REPLACE --- mysql-test/r/create_drop_db.result | 40 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 mysql-test/r/create_drop_db.result (limited to 'mysql-test/r/create_drop_db.result') 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 -- cgit v1.2.1