1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

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.
This commit is contained in:
Elena Stepanova
2014-12-03 19:53:40 +04:00
parent 2b5db1d5bc
commit cc06415fd6
10 changed files with 19 additions and 9 deletions

View File

@@ -2,8 +2,8 @@ DROP DATABASE IF EXISTS d1;
CREATE DATABASE d1;
SHOW DATABASES;
Database
information_schema
d1
information_schema
mtr
mysql
performance_schema
@@ -13,8 +13,8 @@ Database (d%)
d1
SHOW DATABASES LIKE '%';
Database (%)
information_schema
d1
information_schema
mtr
mysql
performance_schema
@@ -24,8 +24,8 @@ DROP DATABASE d1;
CREATE SCHEMA d1;
SHOW SCHEMAS;
Database
information_schema
d1
information_schema
mtr
mysql
performance_schema
@@ -35,8 +35,8 @@ Database (d%)
d1
SHOW SCHEMAS LIKE '%';
Database (%)
information_schema
d1
information_schema
mtr
mysql
performance_schema