Merge pull request #516 from grooverdan/supported_versions
MariaDB-10.1 EOL, MariaDB-10.5 is GA
This commit is contained in:
commit
b8effe6410
1 changed files with 2 additions and 2 deletions
|
@ -1997,8 +1997,8 @@ sub validate_mysql_version {
|
||||||
$mysqlvermicro ||= 0;
|
$mysqlvermicro ||= 0;
|
||||||
|
|
||||||
if ( mysql_version_eq(8) or mysql_version_eq(5, 6) or mysql_version_eq(5, 7)
|
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, 2) or mysql_version_eq(10, 3) or mysql_version_eq(10, 4)
|
||||||
or mysql_version_eq(10, 4) )
|
or mysql_version_eq(10, 5) )
|
||||||
{
|
{
|
||||||
goodprint "Currently running supported MySQL version " . $myvar{'version'} . "";
|
goodprint "Currently running supported MySQL version " . $myvar{'version'} . "";
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue