Skip to content

Commit

Permalink
Merge pull request #516 from grooverdan/supported_versions
Browse files Browse the repository at this point in the history
MariaDB-10.1 EOL, MariaDB-10.5 is GA
  • Loading branch information
jmrenouard committed Dec 8, 2020
2 parents de4b145 + 6f966de commit b8effe6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mysqltuner.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1997,8 +1997,8 @@ sub validate_mysql_version {
$mysqlvermicro ||= 0;

if ( mysql_version_eq(8) or mysql_version_eq(5, 6) or mysql_version_eq(5, 7)
or mysql_version_eq(10, 1) or mysql_version_eq(10, 2) or mysql_version_eq(10, 3)
or mysql_version_eq(10, 4) )
or mysql_version_eq(10, 2) or mysql_version_eq(10, 3) or mysql_version_eq(10, 4)
or mysql_version_eq(10, 5) )
{
goodprint "Currently running supported MySQL version " . $myvar{'version'} . "";
return;
Expand Down

0 comments on commit b8effe6

Please sign in to comment.