From d7c906c9c4b17c2e58cb08c8d09836780997a2ba Mon Sep 17 00:00:00 2001 From: Jean-Marie Renouard Date: Mon, 26 Nov 2018 15:25:54 +0000 Subject: [PATCH] Uncaught exception from user code (#414) --- mysqltuner.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysqltuner.pl b/mysqltuner.pl index 5c0ecaa..d9a2b43 100755 --- a/mysqltuner.pl +++ b/mysqltuner.pl @@ -3503,7 +3503,7 @@ sub mysqsl_pfs { ) unless ( mysql_version_le( 5, 6 ) ); push( @generalrec, "Consider installing Sys schema from https://github.com/good-dba/mariadb-sys for MariaDB" - ) unless ( mysql_version_gt( 10, 0 ) ); + ) unless ( mysql_version_eq( 10, 0 ) or mysql_version_eq( 5, 5 ) ); return; }