1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

SHOW CREATE TABLE didn't display field names in the proper charset

mysys/charset.c:
  Clear all fields at the end of previous charset
This commit is contained in:
unknown
2003-03-18 13:42:45 +04:00
parent 2dae38c713
commit 18d3292bb7
6 changed files with 104 additions and 2 deletions

View File

@ -1014,12 +1014,12 @@ append_identifier(THD *thd, String *packet, const char *name)
if (thd->options & OPTION_QUOTE_SHOW_CREATE)
{
packet->append(&qtype, 1);
packet->append(name);
packet->append(name, 0, system_charset_info);
packet->append(&qtype, 1);
}
else
{
packet->append(name);
packet->append(name, 0, system_charset_info);
}
}