diff options
author | unknown <bar@mysql.com> | 2004-10-18 15:23:24 +0500 |
---|---|---|
committer | unknown <bar@mysql.com> | 2004-10-18 15:23:24 +0500 |
commit | 5267ec8a5ac0ce18857ace639382e06631e0a62f (patch) | |
tree | 8f676b681ea799bf7fbdb31b3bfb29430f1640d6 /include | |
parent | 2310f00af2bedf78a98836ab953f7dfc71654d3d (diff) | |
download | mariadb-git-5267ec8a5ac0ce18857ace639382e06631e0a62f.tar.gz |
Bug #6040 can't retrieve records with umlaut characters in case insensitive manner
Diffstat (limited to 'include')
-rw-r--r-- | include/m_ctype.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/m_ctype.h b/include/m_ctype.h index 1f42b514a1b..ddc21070547 100644 --- a/include/m_ctype.h +++ b/include/m_ctype.h @@ -365,6 +365,11 @@ uint my_instr_mb(struct charset_info_st *, const char *s, uint s_length, my_match_t *match, uint nmatch); +int my_wildcmp_unicode(CHARSET_INFO *cs, + const char *str, const char *str_end, + const char *wildstr, const char *wildend, + int escape, int w_one, int w_many, + MY_UNICASE_INFO **weights); extern my_bool my_parse_charset_xml(const char *bug, uint len, int (*add)(CHARSET_INFO *cs)); |