bug #869006 Ignore number of records for MRG_MyISAM
This commit is contained in:
@@ -21,6 +21,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
|
|||||||
- [core] Fix broken cleanup of $_GET
|
- [core] Fix broken cleanup of $_GET
|
||||||
- bug #2924357 [operations] Cannot rename a database that has foreign key
|
- bug #2924357 [operations] Cannot rename a database that has foreign key
|
||||||
constraints
|
constraints
|
||||||
|
- bug #869006 [structure] Ignore number of records for MRG_MyISAM tables
|
||||||
|
|
||||||
3.2.4.0 (2009-12-02)
|
3.2.4.0 (2009-12-02)
|
||||||
- bug [engines] Innodb_buffer_pool_pages_latched no longer returned in status
|
- bug [engines] Innodb_buffer_pool_pages_latched no longer returned in status
|
||||||
|
@@ -330,7 +330,7 @@ foreach ($tables as $keyname => $each_table) {
|
|||||||
}
|
}
|
||||||
//$display_rows = ' - ';
|
//$display_rows = ' - ';
|
||||||
break;
|
break;
|
||||||
case 'MRG_MyISAM' :
|
case 'MRG_MYISAM' :
|
||||||
case 'BerkeleyDB' :
|
case 'BerkeleyDB' :
|
||||||
// Merge or BerkleyDB table: Only row count is accurate.
|
// Merge or BerkleyDB table: Only row count is accurate.
|
||||||
if ($is_show_stats) {
|
if ($is_show_stats) {
|
||||||
@@ -358,7 +358,10 @@ foreach ($tables as $keyname => $each_table) {
|
|||||||
$unit = '';
|
$unit = '';
|
||||||
}
|
}
|
||||||
} // end switch
|
} // end switch
|
||||||
|
|
||||||
|
if ('MRG_MYISAM' != $each_table['ENGINE']) {
|
||||||
$sum_entries += $each_table['TABLE_ROWS'];
|
$sum_entries += $each_table['TABLE_ROWS'];
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($each_table['Collation'])) {
|
if (isset($each_table['Collation'])) {
|
||||||
$collation = '<dfn title="'
|
$collation = '<dfn title="'
|
||||||
|
Reference in New Issue
Block a user