diff --git a/ChangeLog b/ChangeLog index b6f8e998d..3508cef49 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA - bug [history] QueryHistoryDB is not respected - bug #2905629 [auth] Blowfish secret is not hashed - bug #2910000 [gui] ShowServerInfo should hide all server info from main page +- bug #2910568 [structure] Table size for ARCHIVE tables is not displayed 3.2.4.0 (2009-12-02) - bug [engines] Innodb_buffer_pool_pages_latched no longer returned in status diff --git a/db_structure.php b/db_structure.php index c757ecbf9..a05f3cb39 100644 --- a/db_structure.php +++ b/db_structure.php @@ -289,11 +289,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'], $return = true);