Don't display 0 for InnoDB tables as records count - fixes #735441.

This commit is contained in:
Michal Čihař
2003-05-10 16:14:34 +00:00
parent 4d1f628a8b
commit 95a4750719
2 changed files with 5 additions and 1 deletions

View File

@@ -249,7 +249,7 @@ else if (PMA_MYSQL_INT_VERSION >= 32303) {
$row_count = PMA_mysql_result($table_info_result, 0, 'count');
$sum_entries += $row_count;
} else {
$row_count = 0;
$row_count = $sts_data['Rows'];
$sum_entries += $sts_data['Rows'];
}
$display_rows = number_format($row_count, 0, $number_decimal_separator, $number_thousands_separator);