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