diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-04-07 17:17:25 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-04-07 17:17:25 +0200 |
commit | 2a9662b401405ee8f8f0849f7f90faac1081e26e (patch) | |
tree | 55dc85cf9bfc5cf7501efe7e24342e22db8bf7fd /mysql-test/r/mysqlcheck.result | |
parent | 8980e67693c8f011200bc3924f5a8fc914aecc51 (diff) | |
download | mariadb-git-2a9662b401405ee8f8f0849f7f90faac1081e26e.tar.gz |
find_files(): don't sort files in my_dir(), sort table names
after all engines have discovered their tables
side effect: correct alphabetical sorting as in ORDER BY ... COLLATE utf8_bin,
information_schema is no longer the first after find_files(),
tables like #mysql50#zzz are sorted first (as per table name),
not last (as per file name zzz).
Diffstat (limited to 'mysql-test/r/mysqlcheck.result')
-rw-r--r-- | mysql-test/r/mysqlcheck.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/mysqlcheck.result b/mysql-test/r/mysqlcheck.result index 034913a72e6..14ade969b25 100644 --- a/mysql-test/r/mysqlcheck.result +++ b/mysql-test/r/mysqlcheck.result @@ -176,15 +176,15 @@ t1 v1 show tables; Tables_in_test -t1 #mysql50#v-1 +t1 v1 test.t1 OK show tables; Tables_in_test t1 -v1 v-1 +v1 drop view v1, `v-1`; drop table t1; SET NAMES utf8; |