1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

After-merge fixes.

This commit is contained in:
anozdrin@mysql.com
2006-03-09 21:00:45 +03:00
parent c1ef46fcc7
commit c5895a9686
6 changed files with 15 additions and 20 deletions

View File

@@ -831,7 +831,7 @@ append_identifier(THD *thd, String *packet, const char *name, uint length)
int get_quote_char_for_identifier(THD *thd, const char *name, uint length)
{
if (!length ||
if (length &&
!is_keyword(name,length) &&
!require_quotes(name, length) &&
!(thd->options & OPTION_QUOTE_SHOW_CREATE))