bug [engines] Innodb_buffer_pool_pages_latched no longer returned in status
This commit is contained in:
@@ -46,6 +46,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
|
||||
- bug #2883633 [export] Export of InnoDB table is incomplete
|
||||
|
||||
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)
|
||||
- patch #2856664 [export] Date, time, and datetime column types now export correctly to
|
||||
|
@@ -231,14 +231,19 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine
|
||||
. ' <td class="value">'
|
||||
. PMA_formatNumber($status['Innodb_buffer_pool_pages_misc'], 0) . "\n"
|
||||
. '</td>' . "\n"
|
||||
. ' </tr>' . "\n"
|
||||
. ' <tr class="even">' . "\n"
|
||||
. ' <th>' . $GLOBALS['strLatchedPages'] . '</th>' . "\n"
|
||||
. ' </tr>';
|
||||
|
||||
// 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">'
|
||||
. PMA_formatNumber($status['Innodb_buffer_pool_pages_latched'], 0) . "\n"
|
||||
. '</td>' . "\n"
|
||||
. ' </tr>' . "\n"
|
||||
. ' </tbody>' . "\n"
|
||||
. PMA_formatNumber($status['Innodb_buffer_pool_pages_latched'], 0)
|
||||
. '</td>'
|
||||
. ' </tr>';
|
||||
}
|
||||
|
||||
$output .= ' </tbody>' . "\n"
|
||||
. '</table>' . "\n\n"
|
||||
. '<table class="data" id="table_innodb_bufferpool_activity">' . "\n"
|
||||
. ' <caption class="tblHeaders">' . "\n"
|
||||
|
Reference in New Issue
Block a user