bug#17568 mysql_fix_privilege_tables doesn't create mysql.plugin

'mysql_install_db' changed to 'mysql_upgrade' in error message
This commit is contained in:
gluh@eagle.intranet.mysql.r18.ru 2006-02-28 12:42:06 +04:00
parent 88a583da1d
commit 149ecabb50
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -146,7 +146,7 @@ void udf_init()
if (simple_open_n_lock_tables(new_thd, &tables))
{
DBUG_PRINT("error",("Can't open udf table"));
sql_print_error("Can't open the mysql.func table. Please run the mysql_install_db script to create it.");
sql_print_error("Can't open the mysql.func table. Please run the mysql_upgrade script to create it.");
goto end;
}