mirror of
https://github.com/vrana/adminer.git
synced 2025-08-09 08:06:59 +02:00
Order database names in MySQL 8(bug #613)
This commit is contained in:
@@ -386,7 +386,7 @@ if (!defined("DRIVER")) {
|
|||||||
$return = get_session("dbs");
|
$return = get_session("dbs");
|
||||||
if ($return === null) {
|
if ($return === null) {
|
||||||
$query = (min_version(5)
|
$query = (min_version(5)
|
||||||
? "SELECT SCHEMA_NAME FROM information_schema.SCHEMATA"
|
? "SELECT SCHEMA_NAME FROM information_schema.SCHEMATA ORDER BY SCHEMA_NAME"
|
||||||
: "SHOW DATABASES"
|
: "SHOW DATABASES"
|
||||||
); // SHOW DATABASES can be disabled by skip_show_database
|
); // SHOW DATABASES can be disabled by skip_show_database
|
||||||
$return = ($flush ? slow_query($query) : get_vals($query));
|
$return = ($flush ? slow_query($query) : get_vals($query));
|
||||||
|
@@ -8,6 +8,7 @@ Fix displaying info about non-alphabetical objects (bug #599)
|
|||||||
Use secure cookies on HTTP if session.cookie_secure is set
|
Use secure cookies on HTTP if session.cookie_secure is set
|
||||||
PDO: Support binary fields download
|
PDO: Support binary fields download
|
||||||
MySQL: Use CONVERT() only when searching for non-ASCII (bug #603)
|
MySQL: Use CONVERT() only when searching for non-ASCII (bug #603)
|
||||||
|
MySQL: Order database names in MySQL 8 (bug #613)
|
||||||
PostgreSQL: Add SQL operator to search
|
PostgreSQL: Add SQL operator to search
|
||||||
PostgreSQL: Fix editing data in views (bug #605, regression from 4.6.0)
|
PostgreSQL: Fix editing data in views (bug #605, regression from 4.6.0)
|
||||||
PostgreSQL: Do not cast date/time/number/uuid searches to text (bug #608)
|
PostgreSQL: Do not cast date/time/number/uuid searches to text (bug #608)
|
||||||
|
Reference in New Issue
Block a user