Commit 992cccd7 authored by unknown's avatar unknown

Allow MySQL check to handle tables with spaces inside


client/mysqlcheck.c:
  Small fix to make MySQLCheck  to handle table names with spaces inside.
parent c99fd2ca
...@@ -463,10 +463,10 @@ static int handle_request_for_tables(char *tables, uint length) ...@@ -463,10 +463,10 @@ static int handle_request_for_tables(char *tables, uint length)
if (!(query =(char *) my_malloc((sizeof(char)*(length+110)), MYF(MY_WME)))) if (!(query =(char *) my_malloc((sizeof(char)*(length+110)), MYF(MY_WME))))
return 1; return 1;
sprintf(query, "%s TABLE %s %s", op, tables, options); sprintf(query, "%s TABLE `%s` %s", op, tables, options);
if (mysql_query(sock, query)) if (mysql_query(sock, query))
{ {
sprintf(message, "when executing '%s TABLE ... %s", op, options); sprintf(message, "when executing '%s TABLE `%s` %s", op, tables,options);
DBerror(sock, message); DBerror(sock, message);
return 1; return 1;
} }
......
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