lowering mysql requirement (no plans to use recursive query anymore)
This commit is contained in:
parent
e2dc43e2bf
commit
b47188fbd8
|
@ -11,7 +11,7 @@ class System_Check {
|
||||||
|
|
||||||
public $mariadb = false;
|
public $mariadb = false;
|
||||||
private $mysql_server_version = null;
|
private $mysql_server_version = null;
|
||||||
private $health_check_mysql_rec_version = '8.0';
|
private $health_check_mysql_rec_version = '5.0';
|
||||||
private $health_check_mysql_min_version = '5.0';
|
private $health_check_mysql_min_version = '5.0';
|
||||||
|
|
||||||
public function __construct() {
|
public function __construct() {
|
||||||
|
@ -62,7 +62,7 @@ class System_Check {
|
||||||
|
|
||||||
if ( stristr( $mysql_server_type, 'mariadb' ) ) {
|
if ( stristr( $mysql_server_type, 'mariadb' ) ) {
|
||||||
$this->mariadb = true;
|
$this->mariadb = true;
|
||||||
$this->health_check_mysql_rec_version = '10.2.2';
|
$this->health_check_mysql_rec_version = '10.0';
|
||||||
$this->health_check_mysql_min_version = '10.0';
|
$this->health_check_mysql_min_version = '10.0';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue