mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
use String->charset instead of default_charset_info
client/mysql.cc: default_charset_info -> system_charset_info include/m_ctype.h: Remove old ctype mysys/charset.c: Initialize fields after dynamic charset loading sql/sql_parse.cc: default_charset_info -> system_charset_info
This commit is contained in:
@ -3043,8 +3043,8 @@ static void remove_escape(char *name)
|
||||
#ifdef USE_MB
|
||||
int l;
|
||||
/* if ((l = ismbchar(name, name+MBMAXLEN))) { Wei He: I think it's wrong */
|
||||
if (use_mb(default_charset_info) &&
|
||||
(l = my_ismbchar(default_charset_info, name, strend)))
|
||||
if (use_mb(system_charset_info) &&
|
||||
(l = my_ismbchar(system_charset_info, name, strend)))
|
||||
{
|
||||
while (l--)
|
||||
*to++ = *name++;
|
||||
|
Reference in New Issue
Block a user