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.
2 parents 5bc8fe2 + 7ab537f commit 432689cCopy full SHA for 432689c
1 file changed
mysqltuner.pl
@@ -2551,7 +2551,7 @@ sub get_replication_status {
2551
}
2552
2553
2554
-# https://endoflife.software/applications/databases/mysql
+# https://endoflife.date/mysql
2555
# https://endoflife.date/mariadb
2556
sub validate_mysql_version {
2557
( $mysqlvermajor, $mysqlverminor, $mysqlvermicro ) =
@@ -2561,14 +2561,12 @@ sub validate_mysql_version {
2561
2562
prettyprint " ";
2563
2564
- if ( mysql_version_eq( 9, 1 )
+ if ( mysql_version_eq( 8, 0 )
2565
or mysql_version_eq( 8, 4 )
2566
- or mysql_version_eq( 8, 0 )
2567
- or mysql_version_eq( 10, 5 )
+ or mysql_version_eq( 9, 4 )
2568
or mysql_version_eq( 10, 6 )
2569
or mysql_version_eq( 10, 11 )
2570
or mysql_version_eq( 11, 4 )
2571
- or mysql_version_eq( 11, 6 )
2572
or mysql_version_eq( 11, 8 ) )
2573
{
2574
goodprint "Currently running supported MySQL version "
0 commit comments