Skip to content

Commit

Permalink
Update MySQL version check to support query caching removal in versio…
Browse files Browse the repository at this point in the history
…ns 8.0 to 9.9
  • Loading branch information
jmrenouard committed Dec 10, 2024
1 parent c4a3730 commit 07d7ee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mysqltuner.pl
Original file line number Diff line number Diff line change
Expand Up @@ -3512,7 +3512,7 @@ sub mysql_stats {
push( @generalrec,
"Upgrade MySQL to version 4+ to utilize query caching" );
}
elsif ( mysql_version_eq(8) ) {
elsif ( mysql_version_ge(8) and mysql_version_le(9,9) ) {
infoprint "Query cache has been removed since MySQL 8.0";

#return;
Expand Down

0 comments on commit 07d7ee0

Please sign in to comment.