diff options
author | bar@bar.mysql.r18.ru <> | 2003-07-02 18:34:43 +0500 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2003-07-02 18:34:43 +0500 |
commit | 74b74ad5e7e3e7a350fbc26ad6c91abb783662e3 (patch) | |
tree | 57404c7cd0076832db00a260d7b44107d5ddeb69 /sql/item_cmpfunc.h | |
parent | 5cd54c6945e1e0edeb3a6a8474f1dc3134fd3bd9 (diff) | |
download | mariadb-git-74b74ad5e7e3e7a350fbc26ad6c91abb783662e3.tar.gz |
There is no Item->binary() anymore. It was remain from 4.0.
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r-- | sql/item_cmpfunc.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h index 1311cae335f..1d93c9b6892 100644 --- a/sql/item_cmpfunc.h +++ b/sql/item_cmpfunc.h @@ -129,8 +129,6 @@ public: bool have_rev_func() const { return rev_functype() != UNKNOWN_FUNC; } void print(String *str) { Item_func::print_op(str); } bool is_null() { return test(args[0]->is_null() || args[1]->is_null()); } - virtual bool binary() const - { return test(cmp_collation.collation->state & MY_CS_BINSORT); } static Item_bool_func2* eq_creator(Item *a, Item *b); static Item_bool_func2* ne_creator(Item *a, Item *b); |