summaryrefslogtreecommitdiff
path: root/sql/sql_plugin.cc
diff options
context:
space:
mode:
authorunknown <gluh@eagle.intranet.mysql.r18.ru>2006-02-28 12:42:06 +0400
committerunknown <gluh@eagle.intranet.mysql.r18.ru>2006-02-28 12:42:06 +0400
commitd2d8f180553fdaec685b50bc64d3a31573c36207 (patch)
tree251356f1e77348e44fc4f07fc5b0e25db60b1035 /sql/sql_plugin.cc
parentb6c3c726c68e61c92747bae98a55c13e18df8eeb (diff)
downloadmariadb-git-d2d8f180553fdaec685b50bc64d3a31573c36207.tar.gz
bug#17568 mysql_fix_privilege_tables doesn't create mysql.plugin
'mysql_install_db' changed to 'mysql_upgrade' in error message
Diffstat (limited to 'sql/sql_plugin.cc')
-rw-r--r--sql/sql_plugin.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_plugin.cc b/sql/sql_plugin.cc
index 2046596c428..ad99d81d7b4 100644
--- a/sql/sql_plugin.cc
+++ b/sql/sql_plugin.cc
@@ -681,7 +681,7 @@ void plugin_load(void)
if (simple_open_n_lock_tables(new_thd, &tables))
{
DBUG_PRINT("error",("Can't open plugin table"));
- sql_print_error("Can't open the mysql.plugin table. Please run the mysql_install_db script to create it.");
+ sql_print_error("Can't open the mysql.plugin table. Please run the mysql_upgrade script to create it.");
goto end;
}
table= tables.table;