mirror of
https://github.com/vrana/adminer.git
synced 2026-03-06 12:31:45 +01:00
Add approximate row count for PostgreSQL driver
This commit is contained in:
@@ -13,7 +13,10 @@ if ($_GET["script"] == "db") {
|
||||
foreach ($sums + array("Auto_increment" => 0, "Rows" => 0) as $key => $val) {
|
||||
if ($table_status[$key] != "") {
|
||||
$val = number_format($table_status[$key], 0, '.', lang(','));
|
||||
json_row("$key-$id", ($key == "Rows" && $table_status["Engine"] == "InnoDB" && $val ? "~ $val" : $val));
|
||||
json_row("$key-$id", ($key == "Rows" && $val && (
|
||||
$table_status["Engine"] == "InnoDB" || // MySQL InnoDB
|
||||
$table_status["Engine"] == "table" // PostgreSQL table reltype
|
||||
) ? "~ $val" : $val));
|
||||
if (isset($sums[$key])) {
|
||||
$sums[$key] += ($table_status["Engine"] != "InnoDB" || $key != "Data_free" ? $table_status[$key] : 0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user