From 07f9442caf714c439f1a586061ae995f76d14d43 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 10 Jul 2013 08:29:09 -0400 Subject: [PATCH] bug #4007 Analyze option not shown for InnoDB tables --- ChangeLog | 1 + libraries/operations.lib.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1ee9739c10..ea17415129 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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) diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 155eed0529..c4c453a60b 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -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']),