diff options
author | unknown <heikki@hundin.mysql.fi> | 2005-04-27 03:02:25 +0300 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2005-04-27 03:02:25 +0300 |
commit | 79d3149d3f0af1dab06bbfe044f1a6b1acee5cfa (patch) | |
tree | 69897d6ec8685387706fd214d29f39468149cbc0 /innobase/dict | |
parent | 45baf2b5d9799318a27fb7e2ab281c02339f6c1b (diff) | |
parent | 705d1631248a0b3159b58572a0b8c9e35e0598cc (diff) | |
download | mariadb-git-79d3149d3f0af1dab06bbfe044f1a6b1acee5cfa.tar.gz |
Merge hundin.mysql.fi:/home/heikki/mysql-4.1
into hundin.mysql.fi:/home/heikki/mysql-5.0
innobase/dict/dict0dict.c:
Auto merged
innobase/fil/fil0fil.c:
Auto merged
innobase/include/dict0dict.h:
Auto merged
Diffstat (limited to 'innobase/dict')
-rw-r--r-- | innobase/dict/dict0dict.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/innobase/dict/dict0dict.c b/innobase/dict/dict0dict.c index 8c9724da079..0c39defeada 100644 --- a/innobase/dict/dict0dict.c +++ b/innobase/dict/dict0dict.c @@ -199,7 +199,17 @@ FILE* dict_foreign_err_file = NULL; mutex_t dict_foreign_err_mutex; /* mutex protecting the foreign and unique error buffers */ - +/********************************************************************** +Makes all characters in a NUL-terminated UTF-8 string lower case. */ + +void +dict_casedn_str( +/*============*/ + char* a) /* in/out: string to put in lower case */ +{ + innobase_casedn_str(a); +} + /************************************************************************ Checks if the database name in two table names is the same. */ |