summaryrefslogtreecommitdiff
path: root/sql/item_buff.cc
diff options
context:
space:
mode:
authorunknown <bar@bar.mysql.r18.ru>2002-10-25 13:58:32 +0500
committerunknown <bar@bar.mysql.r18.ru>2002-10-25 13:58:32 +0500
commit4b2e8d5310aa7756fb0993159f5a0aa5f85cc57b (patch)
treed8d121f81f5cf89edfe070e49636482fd879f1fa /sql/item_buff.cc
parent7113030053a7c02c8614cff2f6d15979255fd555 (diff)
downloadmariadb-git-4b2e8d5310aa7756fb0993159f5a0aa5f85cc57b.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;