mariadb/mysql-test/suite/engines/funcs/t/db_create_drop.test
Elena Stepanova cc06415fd6 MDEV-7255 Failures in engines/* tests, part 1
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.
2014-12-03 19:53:40 +04:00

20 lines
346 B
Text

--disable_warnings
DROP DATABASE IF EXISTS d1;
--enable_warnings
CREATE DATABASE d1;
--sorted_result
SHOW DATABASES;
SHOW DATABASES LIKE 'd%';
--sorted_result
SHOW DATABASES LIKE '%';
USE d1;
DROP DATABASE d1;
CREATE SCHEMA d1;
--sorted_result
SHOW SCHEMAS;
SHOW SCHEMAS LIKE 'd%';
--sorted_result
SHOW SCHEMAS LIKE '%';
USE d1;
DROP SCHEMA d1;