We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d76bf0c commit 5c15c71Copy full SHA for 5c15c71
mysqltuner.pl
@@ -2656,13 +2656,15 @@ sub validate_mysql_version {
2656
2657
if ( mysql_version_eq( 8, 0 )
2658
or mysql_version_eq( 8, 4 )
2659
- or mysql_version_eq( 10, 5 )
+ or mysql_version_eq( 9, 5 )
2660
or mysql_version_eq( 10, 6 )
2661
- or mysql_version_eq( 10, 11 )
2662
- or mysql_version_eq( 11, 4 ) )
+ or mysql_version_eq( 10, 6 )
+ or mysql_version_eq( 10, 11)
2663
+ or mysql_version_eq( 11, 4 )
2664
+ or mysql_version_eq( 11, 8 ) )
2665
{
- goodprint "Currently running supported MySQL version "
- . $myvar{'version'} . "";
2666
+ goodprint "Currently running supported MySQL/MariaDB version "
2667
+ . $myvar{'version'} . "(LTS)";
2668
return;
2669
}
2670
else {
0 commit comments