diff options
author | unknown <bar@bar.mysql.r18.ru> | 2003-03-15 17:24:21 +0400 |
---|---|---|
committer | unknown <bar@bar.mysql.r18.ru> | 2003-03-15 17:24:21 +0400 |
commit | 20a28bdc68064b490319a948ce819646f6341bdf (patch) | |
tree | 649e7e6bfc3d868538b0e255a225309361043f9c /sql/sql_db.cc | |
parent | 23c774bc727f668c3663226e63b6452a95f3a851 (diff) | |
download | mariadb-git-20a28bdc68064b490319a948ce819646f6341bdf.tar.gz |
sql_parse.cc, sql_db.cc:
less system_charset_info
sql/sql_db.cc:
less system_charset_info
sql/sql_parse.cc:
less system_charset_info
Diffstat (limited to 'sql/sql_db.cc')
-rw-r--r-- | sql/sql_db.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/sql_db.cc b/sql/sql_db.cc index 517438d9203..99763d717fe 100644 --- a/sql/sql_db.cc +++ b/sql/sql_db.cc @@ -108,7 +108,7 @@ static bool load_db_opt(const char *path, HA_CREATE_INFO *create) { char *pos= buf+nbytes-1; /* Remove end space and control characters */ - while (pos > buf && !my_isgraph(system_charset_info, pos[-1])) + while (pos > buf && !my_isgraph(&my_charset_latin1, pos[-1])) pos--; *pos=0; if ((pos= strchr(buf, '='))) @@ -414,8 +414,8 @@ static long mysql_rm_known_files(THD *thd, MY_DIR *dirp, const char *db, DBUG_PRINT("info",("Examining: %s", file->name)); /* Check if file is a raid directory */ - if (my_isdigit(system_charset_info,file->name[0]) && - my_isdigit(system_charset_info,file->name[1]) && + if (my_isdigit(&my_charset_latin1,file->name[0]) && + my_isdigit(&my_charset_latin1,file->name[1]) && !file->name[2] && !level) { char newpath[FN_REFLEN]; @@ -440,7 +440,7 @@ static long mysql_rm_known_files(THD *thd, MY_DIR *dirp, const char *db, continue; } strxmov(filePath,org_path,"/",file->name,NullS); - if (db && !my_strcasecmp(system_charset_info, + if (db && !my_strcasecmp(&my_charset_latin1, fn_ext(file->name), reg_ext)) { /* Drop the table nicely */ |