Commit 52f190c0 authored by lars@mysql.com's avatar lars@mysql.com

BUG#9123: Updates after Mats review

parent 529f9db9
...@@ -2107,10 +2107,10 @@ static void get_actual_table_name(const char *old_table_name, ...@@ -2107,10 +2107,10 @@ static void get_actual_table_name(const char *old_table_name,
{ {
MYSQL_RES *tableRes; MYSQL_RES *tableRes;
MYSQL_ROW row; MYSQL_ROW row;
char query[ NAME_LEN + 50 ]; char query[2*NAME_LEN+50];
char show_name_buff[FN_REFLEN];
DBUG_ENTER("get_actual_table_name"); DBUG_ENTER("get_actual_table_name");
char show_name_buff[FN_REFLEN];
sprintf(query, "SHOW TABLES LIKE %s", sprintf(query, "SHOW TABLES LIKE %s",
quote_for_like(old_table_name, show_name_buff)); quote_for_like(old_table_name, show_name_buff));
if (mysql_query_with_error_report(sock, 0, query)) if (mysql_query_with_error_report(sock, 0, query))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment