mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Create 'main' test directory and move 't' and 'r' there
This commit is contained in:
32
mysql-test/main/create_drop_db.test
Normal file
32
mysql-test/main/create_drop_db.test
Normal file
@ -0,0 +1,32 @@
|
||||
# Enable diisplaying rows affected
|
||||
--enable_info
|
||||
|
||||
CREATE DATABASE IF NOT EXISTS db1;
|
||||
|
||||
CREATE DATABASE IF NOT EXISTS db1;
|
||||
CREATE TABLE db1.t1 (a INT);
|
||||
SHOW TABLES IN db1;
|
||||
|
||||
CREATE OR REPLACE DATABASE db1;
|
||||
SHOW TABLES IN db1;
|
||||
|
||||
--error ER_WRONG_USAGE
|
||||
CREATE OR REPLACE DATABASE IF NOT EXISTS db2;
|
||||
|
||||
DROP DATABASE db1;
|
||||
|
||||
DROP DATABASE IF EXISTS db1;
|
||||
|
||||
--error ER_DB_DROP_EXISTS
|
||||
DROP DATABASE db1;
|
||||
|
||||
CREATE OR REPLACE DATABASE db1;
|
||||
SHOW TABLES IN db1;
|
||||
|
||||
--error ER_DB_CREATE_EXISTS
|
||||
CREATE DATABASE db1;
|
||||
|
||||
DROP DATABASE IF EXISTS db1;
|
||||
DROP DATABASE IF EXISTS db1;
|
||||
|
||||
--disable_info
|
Reference in New Issue
Block a user