bug [engines] Innodb_buffer_pool_pages_latched no longer returned in status

This commit is contained in:
Marc Delisle
2009-10-31 18:53:56 +00:00
parent 2e13704759
commit e4395ab7e8
2 changed files with 13 additions and 7 deletions

View File

@@ -46,6 +46,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #2883633 [export] Export of InnoDB table is incomplete - bug #2883633 [export] Export of InnoDB table is incomplete
3.2.4.0 (not yet released) 3.2.4.0 (not yet released)
- bug [engines] Innodb_buffer_pool_pages_latched no longer returned in status
3.2.3.0 (2009-10-30) 3.2.3.0 (2009-10-30)
- patch #2856664 [export] Date, time, and datetime column types now export correctly to - patch #2856664 [export] Date, time, and datetime column types now export correctly to

View File

@@ -231,14 +231,19 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine
. ' <td class="value">' . ' <td class="value">'
. PMA_formatNumber($status['Innodb_buffer_pool_pages_misc'], 0) . "\n" . PMA_formatNumber($status['Innodb_buffer_pool_pages_misc'], 0) . "\n"
. '</td>' . "\n" . '</td>' . "\n"
. ' </tr>' . "\n" . ' </tr>';
. ' <tr class="even">' . "\n"
. ' <th>' . $GLOBALS['strLatchedPages'] . '</th>' . "\n" // not present at least since MySQL 5.1.40
if (isset($status['Innodb_buffer_pool_pages_latched'])) {
$output .= ' <tr class="even">'
. ' <th>' . $GLOBALS['strLatchedPages'] . '</th>'
. ' <td class="value">' . ' <td class="value">'
. PMA_formatNumber($status['Innodb_buffer_pool_pages_latched'], 0) . "\n" . PMA_formatNumber($status['Innodb_buffer_pool_pages_latched'], 0)
. '</td>' . "\n" . '</td>'
. ' </tr>' . "\n" . ' </tr>';
. ' </tbody>' . "\n" }
$output .= ' </tbody>' . "\n"
. '</table>' . "\n\n" . '</table>' . "\n\n"
. '<table class="data" id="table_innodb_bufferpool_activity">' . "\n" . '<table class="data" id="table_innodb_bufferpool_activity">' . "\n"
. ' <caption class="tblHeaders">' . "\n" . ' <caption class="tblHeaders">' . "\n"