Merge pull request #516 from grooverdan/supported_versions

MariaDB-10.1 EOL, MariaDB-10.5 is GA
This commit is contained in:
Jean-Marie Renouard 2020-12-08 08:29:44 +01:00 committed by GitHub
commit b8effe6410
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;