summaryrefslogtreecommitdiff
path: root/sql/item_cmpfunc.h
diff options
context:
space:
mode:
authorunknown <bar@bar.mysql.r18.ru>2003-03-07 12:21:32 +0400
committerunknown <bar@bar.mysql.r18.ru>2003-03-07 12:21:32 +0400
commit11da9dede60e52f2178757e3b57c1c97412eda1c (patch)
tree3247730070624b547ff4ab3f2ea2e00169b965d2 /sql/item_cmpfunc.h
parent8d9d12d18207d880b4fde3bda5e4f1bd84f25b94 (diff)
downloadmariadb-git-11da9dede60e52f2178757e3b57c1c97412eda1c.tar.gz
sql_acl.cc, item.h:
use of new argument sql_analyse.h: macros from mysql_priv.h. Should be deleted soon. mysql_priv.h: _default_charset_info has been removed item_cmpfunc.h: Use cmp_charset hostname.cc, hash_filo.h: Move charset to constructor argument sql/hash_filo.h: Move charset to constructor argument sql/hostname.cc: Move charset to constructor argument sql/item_cmpfunc.h: Use cmp_charset sql/mysql_priv.h: _default_charset_info has been removed sql/sql_analyse.h: macros from mysql_priv.h. Should be deleted soon. sql/item.h: use of new argument sql/sql_acl.cc: use of new argument
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r--sql/item_cmpfunc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h
index cc0ce455019..b9d8615beb4 100644
--- a/sql/item_cmpfunc.h
+++ b/sql/item_cmpfunc.h
@@ -482,7 +482,7 @@ public:
int cmp(Item *arg)
{
char buff[80];
- String tmp(buff, sizeof(buff), default_charset_info), *res;
+ String tmp(buff, sizeof(buff), cmp_charset), *res;
if (!(res= arg->val_str(&tmp)))
return 1; /* Can't be right */
return sortcmp(value_res, res, cmp_charset);