1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

New ctype functions/macros to support many charsets at a time

This commit is contained in:
bar@gw.udmsearch.izhnet.ru
2002-03-12 21:37:58 +04:00
parent 4237e7ace7
commit b37ce8e769
83 changed files with 1336 additions and 956 deletions

View File

@ -270,7 +270,7 @@ static TABLE **find_table_ptr_by_name(THD *thd, const char *db,
for (TABLE *table=*ptr; table ; table=*ptr)
{
if (!memcmp(table->table_cache_key, db, dblen) &&
!my_strcasecmp(table->table_name,table_name))
!my_strcasecmp(system_charset_info,table->table_name,table_name))
break;
ptr=&(table->next);
}