"Version of the MySQL/MariaDB schema is incompatible.\n\tExpected: {}.{}\n\tActual: {}\nPlease upgrade the mysql backend.\n\n",
expected_major,
expected_minor,
actual_version);
System.exit(1);
}
}
}else{
logger.error(
"Version of the MySQL schema could not be determined. This probably means, that the version is too old.\n\tExpected: {}.{}\n\tActual: unknown\nPlease upgrade the mysql backend.\n\n",
expected_major,
expected_minor);
System.exit(1);
}
}catch(finalSQLExceptione){
logger.error("Could not check the version of the MySQL schema.",e);