fix bug #621295 (Incorrect URL)
This commit is contained in:
@@ -173,14 +173,14 @@ else if (PMA_MYSQL_INT_VERSION >= 32303) {
|
||||
}
|
||||
//$display_rows = ' - ';
|
||||
// get row count with another method
|
||||
$local_query = 'SELECT COUNT(*) AS count FROM '
|
||||
. PMA_backquote($db) . '.'
|
||||
. PMA_backquote($table);
|
||||
$table_info_result = PMA_mysql_query($local_query)
|
||||
$local_query = 'SELECT COUNT(*) AS count FROM '
|
||||
. PMA_backquote($db) . '.'
|
||||
. PMA_backquote($table);
|
||||
$table_info_result = PMA_mysql_query($local_query)
|
||||
or PMA_mysqlDie('', $local_query, '', $err_url_0);
|
||||
$row_count = PMA_mysql_result($table_info_result, 0, 'count');
|
||||
$sum_entries += $row_count;
|
||||
$display_rows = number_format($row_count, 0, $number_decimal_separator, $number_thousands_separator);
|
||||
$display_rows = number_format($row_count, 0, $number_decimal_separator, $number_thousands_separator);
|
||||
}
|
||||
|
||||
// Merge or BerkleyDB table: Only row count is accurate.
|
||||
|
Reference in New Issue
Block a user