1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

Reverted wrong patch for mysql_upgrade

The original code was correct. mysql_upgrade calls the mysql client to
talk with MariaDB. It doesn't call itself!
This commit is contained in:
Monty
2020-09-25 15:58:08 +03:00
parent 71a7b79bcb
commit 6a1376252d
2 changed files with 3 additions and 3 deletions

View File

@@ -1173,7 +1173,7 @@ static int check_version_match(void)
extract_variable_from_show(&ds_version, version_str))
{
print_error("Version check failed. Got the following error when calling "
"the 'mysql_upgrade' command line client", &ds_version);
"the 'mysql' command line client", &ds_version);
dynstr_free(&ds_version);
return 1; /* Query failed */
}