diff options
author | bell@sanja.is.com.ua <> | 2004-08-29 23:14:46 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2004-08-29 23:14:46 +0300 |
commit | 18366c930c54452b20245501d55babcca963ec5b (patch) | |
tree | 15e9f105403916895459b6c2b74f5c03ab99f91c /sql/item_cmpfunc.h | |
parent | 34dc3a86df9cb74e3e761e2c84a36fe6232e6342 (diff) | |
download | mariadb-git-18366c930c54452b20245501d55babcca963ec5b.tar.gz |
NOT elimination moved in parsing (suggested by Monty)
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r-- | sql/item_cmpfunc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h index 4f2dcb6a412..c3551b35d63 100644 --- a/sql/item_cmpfunc.h +++ b/sql/item_cmpfunc.h @@ -274,7 +274,7 @@ public: enum Functype rev_functype() const { return EQUAL_FUNC; } cond_result eq_cmp_result() const { return COND_TRUE; } const char *func_name() const { return "<=>"; } - Item* neg_transformer(THD *thd) { return 0; } + Item *neg_transformer(THD *thd) { return 0; } }; |