summaryrefslogtreecommitdiff
path: root/sql/item_buff.cc
diff options
context:
space:
mode:
authorbar@bar.mysql.r18.ru <>2002-10-25 13:58:32 +0500
committerbar@bar.mysql.r18.ru <>2002-10-25 13:58:32 +0500
commit95aef915216391d2c23cec856d08a49aede76635 (patch)
treed8d121f81f5cf89edfe070e49636482fd879f1fa /sql/item_buff.cc
parent0ca3212a8cc3bafab07556e5dab2294fce17258a (diff)
downloadmariadb-git-95aef915216391d2c23cec856d08a49aede76635.tar.gz
BINARY charset is now used instead of binary_flag
Diffstat (limited to 'sql/item_buff.cc')
-rw-r--r--sql/item_buff.cc2
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;