Sys schema on MariaDB #362

This commit is contained in:
Jean-Marie Renouard 2018-11-26 13:31:59 +00:00
parent a4585a34a6
commit 87eb96a485

View file

@ -3499,8 +3499,12 @@ sub mysqsl_pfs {
unless ( grep /^sys$/, select_array("SHOW DATABASES") ) { unless ( grep /^sys$/, select_array("SHOW DATABASES") ) {
infoprint "Sys schema isn't installed."; infoprint "Sys schema isn't installed.";
push( @generalrec, push( @generalrec,
"Consider installing Sys schema from https://github.com/mysql/mysql-sys" "Consider installing Sys schema from https://github.com/mysql/mysql-sys for MySQL"
) unless ( mysql_version_le( 5, 5 ) ); ) unless ( mysql_version_le( 5, 6 ) );
push( @generalrec,
"Consider installing Sys schema from https://github.com/good-dba/mariadb-sys for MariaDB"
) unless ( mysql_version_gt( 10, 0 ) );
return; return;
} }
else { else {