bug 2910568 [structure] Table size for ARCHIVE tables is not displayed

This commit is contained in:
Marc Delisle
2009-12-13 14:06:19 +00:00
parent 80aeba75f4
commit 9385885515
2 changed files with 3 additions and 1 deletions

View File

@@ -185,11 +185,12 @@ foreach ($tables as $keyname => $each_table) {
switch ( $each_table['ENGINE']) {
// MyISAM, ISAM or Heap table: Row count, data size and index size
// are accurate.
// are accurate; data size is accurate for ARCHIVE
case 'MyISAM' :
case 'ISAM' :
case 'HEAP' :
case 'MEMORY' :
case 'ARCHIVE' :
if ($db_is_information_schema) {
$each_table['Rows'] = PMA_Table::countRecords($db,
$each_table['Name']);