diff options
author | bar@bar.mysql.r18.ru <> | 2002-10-09 15:40:57 +0500 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2002-10-09 15:40:57 +0500 |
commit | 954a47b95abd9540b6436303c5ba824ea74e083b (patch) | |
tree | 789cf07703286e15a43c1ad76c547ec3debe3a8b /client/sql_string.cc | |
parent | 40c0fd1c6c1305a900a678f10555ed8727c7758c (diff) | |
download | mariadb-git-954a47b95abd9540b6436303c5ba824ea74e083b.tar.gz |
Simple charsets now have strncoll() field too
Diffstat (limited to 'client/sql_string.cc')
-rw-r--r-- | client/sql_string.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/sql_string.cc b/client/sql_string.cc index cf9e9f62507..65854ece0ef 100644 --- a/client/sql_string.cc +++ b/client/sql_string.cc @@ -507,7 +507,7 @@ int sortcmp(const String *x,const String *y) uint32 x_len=x->length(),y_len=y->length(),len=min(x_len,y_len); #ifdef USE_STRCOLL - if (use_strcoll(x->str_charset)) + if (use_strnxfrm(x->str_charset)) { #ifndef CMP_ENDSPACE while (x_len && my_isspace(x->str_charset,s[x_len-1])) |