mirror of
https://github.com/MariaDB/server.git
synced 2025-07-26 07:02:12 +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.
13 lines
201 B
Plaintext
13 lines
201 B
Plaintext
--disable_warnings
|
|
DROP DATABASE IF EXISTS d4;
|
|
--enable_warnings
|
|
CREATE DATABASE d4;
|
|
--sorted_result
|
|
SHOW DATABASES;
|
|
--error 1007
|
|
CREATE DATABASE d4;
|
|
DROP DATABASE d4;
|
|
--sorted_result
|
|
SHOW DATABASES;
|
|
|