diff --git a/CHANGELOG.md b/CHANGELOG.md index bc4543a9..42e2df42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## Adminer dev - Allow specifying operator in search anywhere +- Do not order descending in GROUP BY select - Warn about exceeded max_file_uploads in import - MySQL 5.0-: Do not load partitioning info in alter table (bug #1099) - PostgreSQL: Show structure of inherited tables diff --git a/adminer/select.inc.php b/adminer/select.inc.php index f429940d..e5ab664a 100644 --- a/adminer/select.inc.php +++ b/adminer/select.inc.php @@ -354,7 +354,7 @@ if (!$columns && support("table")) { echo "" . script("mixin(qsl('th'), {onmouseover: partial(columnMouse), onmouseout: partial(columnMouse, ' hidden')});", ""); $fun = apply_sql_function($val["fun"], $name); //! columns looking like functions $sortable = isset($field["privileges"]["order"]) || $fun; - echo ($sortable ? "$fun" : $fun); // $order[0] == $key - COUNT(*) + echo ($sortable ? "$fun" : $fun); // $order[0] == $key - COUNT(*) echo "