mirror of
https://github.com/MariaDB/server.git
synced 2025-11-25 17:25:02 +03:00
In 10.0 output of SHOW DATABASES appears to be sorted, while in result files it is not. Added sorted_result for certainty and updated result files.
21 lines
311 B
Plaintext
21 lines
311 B
Plaintext
DROP DATABASE IF EXISTS d5;
|
|
CREATE DATABASE d5;
|
|
SHOW DATABASES;
|
|
Database
|
|
d5
|
|
information_schema
|
|
mtr
|
|
mysql
|
|
performance_schema
|
|
test
|
|
DROP DATABASE nond5;
|
|
ERROR HY000: Can't drop database 'nond5'; database doesn't exist
|
|
DROP DATABASE d5;
|
|
SHOW DATABASES;
|
|
Database
|
|
information_schema
|
|
mtr
|
|
mysql
|
|
performance_schema
|
|
test
|