From c92e0b8e6e028371cdc6aaa425c98eaf68cd624d Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 15 Dec 2012 08:13:35 -0500 Subject: [PATCH] Advisor and MySQL 5.6: * the have_innodb variable is deprecated and removed * log_slow_queries has been replaced with slow_query_log --- libraries/advisory_rules.txt | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/libraries/advisory_rules.txt b/libraries/advisory_rules.txt index 7d365244ea..426c6968ad 100644 --- a/libraries/advisory_rules.txt +++ b/libraries/advisory_rules.txt @@ -81,13 +81,20 @@ rule 'Long query time' [!PMA_DRIZZLE] It is suggested to set {long_query_time} to a lower value, depending on your environment. Usually a value of 1-5 seconds is suggested. long_query_time is currently set to %ds. | value -rule 'Slow query logging' [!PMA_DRIZZLE] +rule 'Slow query logging' [!PMA_DRIZZLE && PMA_MYSQL_INT_VERSION < 50600] log_slow_queries value == 'OFF' The slow query log is disabled. Enable slow query logging by setting {log_slow_queries} to 'ON'. This will help troubleshooting badly performing queries. log_slow_queries is set to 'OFF' +rule 'Slow query logging' [!PMA_DRIZZLE && PMA_MYSQL_INT_VERSION >= 50600] + slow_query_log + value == 'OFF' + The slow query log is disabled. + Enable slow query logging by setting {slow_query_log} to 'ON'. This will help troubleshooting badly performing queries. + slow_query_log is set to 'OFF' + # # versions rule 'Release Series' [!PMA_DRIZZLE] @@ -419,7 +426,7 @@ rule 'Rate of aborted clients' # # InnoDB -rule 'Is InnoDB disabled?' [!PMA_DRIZZLE] +rule 'Is InnoDB disabled?' [!PMA_DRIZZLE && PMA_MYSQL_INT_VERSION < 50600] have_innodb value != "YES" You do not have InnoDB enabled.