diff options
author | bar@bar.mysql.r18.ru <> | 2002-10-23 16:06:04 +0500 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2002-10-23 16:06:04 +0500 |
commit | cd032e041812580feb8f92f5eac5639bb2693616 (patch) | |
tree | 3ed57a24cc2dae56485c31d29d5883c1cc099ad3 /strings | |
parent | e46fce4b99a70dff8b07fc35020c617204e4a190 (diff) | |
download | mariadb-git-cd032e041812580feb8f92f5eac5639bb2693616.tar.gz |
ctype-bin.c:
max_sort_char is 255 for binary
Diffstat (limited to 'strings')
-rw-r--r-- | strings/ctype-bin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/ctype-bin.c b/strings/ctype-bin.c index e03f0e3ea5e..0d08c89c116 100644 --- a/strings/ctype-bin.c +++ b/strings/ctype-bin.c @@ -177,6 +177,6 @@ CHARSET_INFO my_charset_bin = my_strncasecmp_bin, /* strncasecmp */ my_hash_caseup_bin, /* hash_caseup */ my_hash_sort_bin, /* hash_sort */ - 0 /* max_sort_char */ + 255 /* max_sort_char */ }; |