diff options
author | unknown <bar@bar.mysql.r18.ru> | 2003-09-19 15:18:19 +0500 |
---|---|---|
committer | unknown <bar@bar.mysql.r18.ru> | 2003-09-19 15:18:19 +0500 |
commit | 44bffa0b0564a0d28558202d6cebbbea5eee1729 (patch) | |
tree | a720cfa7596cc981bc05e41c0c8c4a6103870eaa /mysys/charset.c | |
parent | 4c63804846d1530b602a74ff30ad26df7645a94b (diff) | |
download | mariadb-git-44bffa0b0564a0d28558202d6cebbbea5eee1729.tar.gz |
Fixed that multibyte charsets didn't honor multibyte
sequence boundaries in functions LIKE and LOCATE in
the case of "binary" collation. Comparison was done
like if the strings were just a binary strings without
character set assumption.
Diffstat (limited to 'mysys/charset.c')
-rw-r--r-- | mysys/charset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/charset.c b/mysys/charset.c index 58ce8f5b2fe..e8406173b33 100644 --- a/mysys/charset.c +++ b/mysys/charset.c @@ -119,7 +119,7 @@ static void simple_cs_init_functions(CHARSET_INFO *cs) if (cs->state & MY_CS_BINSORT) { - cs->coll= &my_collation_bin_handler; + cs->coll= &my_collation_8bit_bin_handler; } else { |