mirror of
https://github.com/MariaDB/server.git
synced 2025-08-26 01:44:06 +03:00
11 lines
170 B
Plaintext
11 lines
170 B
Plaintext
--disable_warnings
|
|
DROP DATABASE IF EXISTS d5;
|
|
--enable_warnings
|
|
CREATE DATABASE d5;
|
|
SHOW DATABASES;
|
|
--error 1008
|
|
DROP DATABASE nond5;
|
|
DROP DATABASE d5;
|
|
SHOW DATABASES;
|
|
|