diff options
author | unknown <bar@bar.mysql.r18.ru> | 2002-10-25 13:58:32 +0500 |
---|---|---|
committer | unknown <bar@bar.mysql.r18.ru> | 2002-10-25 13:58:32 +0500 |
commit | e8237515485b53bd0662e5fc5592bea5507594b8 (patch) | |
tree | d8d121f81f5cf89edfe070e49636482fd879f1fa /sql/item_buff.cc | |
parent | 372b26e7786dcc812bc5fd2e8541d8c58201ea5b (diff) | |
download | mariadb-git-e8237515485b53bd0662e5fc5592bea5507594b8.tar.gz |
BINARY charset is now used instead of binary_flag
Diffstat (limited to 'sql/item_buff.cc')
-rw-r--r-- | sql/item_buff.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_buff.cc b/sql/item_buff.cc index b55a4dc66a0..7b8976bb572 100644 --- a/sql/item_buff.cc +++ b/sql/item_buff.cc @@ -56,7 +56,7 @@ bool Item_str_buff::cmp(void) } else if (null_value) return 0; // new and old value was null - else if (!item->binary) + else if (!item->binary()) tmp= sortcmp(&value,res) != 0; else tmp= stringcmp(&value,res) != 0; |