summaryrefslogtreecommitdiff
path: root/sql/sql_table.cc
diff options
context:
space:
mode:
authormonty@mysql.com <>2004-05-04 15:02:38 +0300
committermonty@mysql.com <>2004-05-04 15:02:38 +0300
commit59ddd8c7383ae69009c8570d427a4e15ccf2a357 (patch)
tree05ce49a5f256144b2831c0deca15ee425d42d9b6 /sql/sql_table.cc
parent661aeb5af2e07c483a2dbf5b20604e57bd3b5f1f (diff)
downloadmariadb-git-59ddd8c7383ae69009c8570d427a4e15ccf2a357.tar.gz
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.
Diffstat (limited to 'sql/sql_table.cc')
-rw-r--r--sql/sql_table.cc2
1 files changed, 1 insertions, 1 deletions
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;