1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 01:24:17 +02:00

Sort schemas in PostgreSQL

This commit is contained in:
Jakub Vrana
2011-07-29 17:59:14 +02:00
parent 21e88515c1
commit 9dda217d55
2 changed files with 2 additions and 2 deletions

View File

@@ -533,7 +533,7 @@ AND typelem = 0"
}
function schemas() {
return get_vals("SELECT nspname FROM pg_namespace");
return get_vals("SELECT nspname FROM pg_namespace ORDER BY nspname");
}
function get_schema() {