bug #4007 Analyze option not shown for InnoDB tables

This commit is contained in:
Marc Delisle 2013-07-10 08:29:09 -04:00
parent c796045e2b
commit 07f9442caf
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ phpMyAdmin - ChangeLog
- bug #3989 Reloading privileges does not update the interface
- bug #3960 NavigationBarIconic config not honored
- bug #3985 Call to undefined function mb_detect_encoding
- bug #4007 Analyze option not shown for InnoDB tables
4.0.4.1 (2013-06-30)
- [security] Global variables scope injection vulnerability (see PMASA-2013-7)

View File

@ -1156,7 +1156,7 @@ function PMA_getListofMaintainActionLink($is_myisam_or_aria,
'Table_types'
);
}
if ($is_myisam_or_aria || $is_berkeleydb) {
if ($is_innodb || $is_myisam_or_aria || $is_berkeleydb) {
$params = array(
'sql_query' => 'ANALYZE TABLE '
. PMA_Util::backquote($GLOBALS['table']),