diff options
author | bar@mysql.com <> | 2004-09-06 20:04:22 +0500 |
---|---|---|
committer | bar@mysql.com <> | 2004-09-06 20:04:22 +0500 |
commit | 09f681ba7bbae9612675097936bb665d775645b8 (patch) | |
tree | 37f32fcc90ab70fa87eb76249ab0d732a15b3ad4 /include | |
parent | 39a37691ac17c7dab7b69f59f31c5ebc3ec5c321 (diff) | |
download | mariadb-git-09f681ba7bbae9612675097936bb665d775645b8.tar.gz |
Bug #5324 Bug in UCA collations with LIKE comparisons and INDEX
Diffstat (limited to 'include')
-rw-r--r-- | include/m_ctype.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/m_ctype.h b/include/m_ctype.h index 65b11f4c06a..16490af7fc3 100644 --- a/include/m_ctype.h +++ b/include/m_ctype.h @@ -312,6 +312,13 @@ my_bool my_like_range_simple(CHARSET_INFO *cs, char *min_str, char *max_str, uint *min_length, uint *max_length); +my_bool my_like_range_mb(CHARSET_INFO *cs, + const char *ptr, uint ptr_length, + pbool escape, pbool w_one, pbool w_many, + uint res_length, + char *min_str, char *max_str, + uint *min_length, uint *max_length); + my_bool my_like_range_ucs2(CHARSET_INFO *cs, const char *ptr, uint ptr_length, pbool escape, pbool w_one, pbool w_many, |