summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2020-09-25 15:58:08 +0300
committerMonty <monty@mariadb.org>2020-09-25 15:58:08 +0300
commit6a1376252d7997f6fa1268c08bed5f93b32922f8 (patch)
treef2cd828634295cf47d51e1650242067c41188a9c /client
parent71a7b79bcbfe90c3118e3d4379ad734dc72c9f39 (diff)
downloadmariadb-git-6a1376252d7997f6fa1268c08bed5f93b32922f8.tar.gz
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!
Diffstat (limited to 'client')
-rw-r--r--client/mysql_upgrade.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysql_upgrade.c b/client/mysql_upgrade.c
index 4872d187a72..4f3f1ff86da 100644
--- a/client/mysql_upgrade.c
+++ b/client/mysql_upgrade.c
@@ -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 */
}