From f2f2bdcf570b166c447c70265e2ceb9dec745116 Mon Sep 17 00:00:00 2001 From: Christian Loos Date: Tue, 16 Jun 2015 12:19:38 +0200 Subject: [PATCH] don't mention MySQL version again The MySQL version is mentioned previously, so no need to do this here again. Also the version mentioned was wrong as innodb_buffer_pool_instances was introduced in 5.5.4: http://dev.mysql.com/doc/refman/5.5/en/innodb-parameters.html#sysvar_innodb_buffer_pool_instances --- mysqltuner.pl | 1 - 1 file changed, 1 deletion(-) diff --git a/mysqltuner.pl b/mysqltuner.pl index 4bf79da..ea9a7ea 100755 --- a/mysqltuner.pl +++ b/mysqltuner.pl @@ -1139,7 +1139,6 @@ sub mysql_stats { goodprint "InnoDB log waits: ".$mystat{'Innodb_log_waits'}."\n"; } if (defined($myvar{'innodb_buffer_pool_instances'})) { - infoprint "MySQL version: " .$myvar{'version'}." is greater than MySQL 5.6.6(innodb_buffer_pool_instances is present)\n"; if ($myvar{'innodb_buffer_pool_instances'} > 64) { badprint "InnoDB buffer pool instances must be lower than 64.\n"; push(@adjvars,"innodb_buffer_pool_instances must be lower than 64.");