From 59ddd8c7383ae69009c8570d427a4e15ccf2a357 Mon Sep 17 00:00:00 2001 From: "monty@mysql.com" <> Date: Tue, 4 May 2004 15:02:38 +0300 Subject: Fix to handle unsigned data in prepared statements (Bug #3447) Fixed security problem that password was temporarly reset when someone changed GRANT for a user. (Bug #3404) Fixed problem with PROCEDURE analyse() and impossible WHERE (Bug #2238) Don't auto-repair tables in mysqlcheck if table type doesn't support 'check' command. --- sql/sql_table.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sql/sql_table.cc') diff --git a/sql/sql_table.cc b/sql/sql_table.cc index c46a9823a52..0d0be1b7e10 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -1759,7 +1759,7 @@ static int mysql_admin_table(THD* thd, TABLE_LIST* tables, char buf[ERRMSGSIZE+20]; uint length=my_snprintf(buf, ERRMSGSIZE, ER(ER_CHECK_NOT_IMPLEMENTED), operator_name); - protocol->store("error", 5, system_charset_info); + protocol->store("note", 4, system_charset_info); protocol->store(buf, length, system_charset_info); } break; -- cgit v1.2.1