diff options
author | unknown <bell@sanja.is.com.ua> | 2004-08-29 23:14:46 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-08-29 23:14:46 +0300 |
commit | f45c482aa9a546ca6ad0f258aa0a8358522f5c2f (patch) | |
tree | 15e9f105403916895459b6c2b74f5c03ab99f91c /sql/item_cmpfunc.h | |
parent | ebf4ce0501486f5eba7b69fe77fb1c49bbd22763 (diff) | |
download | mariadb-git-f45c482aa9a546ca6ad0f258aa0a8358522f5c2f.tar.gz |
NOT elimination moved in parsing (suggested by Monty)
sql/item_cmpfunc.cc:
NOT elimination moved in parsing (we do not need fix fields in it and PS processing)
sql/item_cmpfunc.h:
NOT elimination moved in parsing (we do not need fix fields in it and PS processing)
sql/sql_select.cc:
NOT elimination moved in parsing (we do not need fix fields in it and PS processing)
sql/sql_yacc.yy:
NOT elimination moved in parsing
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; } }; |