mirror of
https://github.com/MariaDB/server.git
synced 2025-08-27 13:04:36 +03:00
11 lines
169 B
Plaintext
11 lines
169 B
Plaintext
--disable_warnings
|
|
DROP DATABASE IF EXISTS d4;
|
|
--enable_warnings
|
|
CREATE DATABASE d4;
|
|
SHOW DATABASES;
|
|
--error 1007
|
|
CREATE DATABASE d4;
|
|
DROP DATABASE d4;
|
|
SHOW DATABASES;
|
|
|