mirror of
https://github.com/vrana/adminer.git
synced 2025-08-12 01:24:17 +02:00
PostgreSQL: Compute size of all databases (bug #881)
This commit is contained in:
@@ -336,7 +336,14 @@ ORDER BY 1";
|
|||||||
}
|
}
|
||||||
|
|
||||||
function count_tables($databases) {
|
function count_tables($databases) {
|
||||||
return array(); // would require reconnect
|
global $connection;
|
||||||
|
$return = array();
|
||||||
|
foreach ($databases as $db) {
|
||||||
|
if ($connection->select_db($db)) {
|
||||||
|
$return[$db] = count(tables_list());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $return;
|
||||||
}
|
}
|
||||||
|
|
||||||
function table_status($name = "") {
|
function table_status($name = "") {
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
Adminer dev:
|
Adminer dev:
|
||||||
Speed up with disabled output buffering
|
Speed up with disabled output buffering
|
||||||
Don't autofocus computed fields in insert form
|
Don't autofocus computed fields in insert form
|
||||||
|
PostgreSQL: Compute size of all databases (bug #881)
|
||||||
PostgreSQL: Do not alter indexes with expressions
|
PostgreSQL: Do not alter indexes with expressions
|
||||||
PostgreSQL: Fix export of indexes with expressions (bug #768)
|
PostgreSQL: Fix export of indexes with expressions (bug #768)
|
||||||
PostgreSQL: Display ENUM types
|
PostgreSQL: Display ENUM types
|
||||||
|
Reference in New Issue
Block a user