1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

sql_analyse.cc, spatial.cc:

Some default_charset_info were removed
sql_select.cc:
  Some default_charset_info were removed.
This commit is contained in:
bar@bar.mysql.r18.ru
2003-02-26 13:16:02 +04:00
parent d134e6f2e7
commit 1a2c7da8db
3 changed files with 26 additions and 33 deletions

View File

@ -66,8 +66,7 @@ Geometry::GClassInfo *Geometry::find_class(const char *name, size_t len)
cur_rt < ci_collection_end; ++cur_rt)
{
if ((cur_rt->m_name[len] == 0) &&
(default_charset_info->strncasecmp(default_charset_info,
cur_rt->m_name, name, len) == 0))
(my_strncasecmp(&my_charset_latin1, cur_rt->m_name, name, len) == 0))
{
return cur_rt;
}