mirror of
https://github.com/vrana/adminer.git
synced 2025-08-13 18:14:07 +02:00
Fix tables list alphabetical order in PostgreSQL driver
This commit is contained in:
committed by
Jakub Vrana
parent
647e8d5cc1
commit
8cb8a75658
@@ -231,9 +231,10 @@ if (isset($_GET["pgsql"])) {
|
||||
UNION ALL
|
||||
SELECT matviewname, 'MATERIALIZED VIEW'
|
||||
FROM pg_matviews
|
||||
WHERE schemaname = current_schema()
|
||||
ORDER BY table_name";
|
||||
WHERE schemaname = current_schema()";
|
||||
}
|
||||
$query .= "
|
||||
ORDER BY 1";
|
||||
return get_key_vals($query);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user