|
My Project
|
Public Member Functions | |
| Item_func_nop_all (Item *a) | |
| longlong | val_int () |
| const char * | func_name () const |
| table_map | not_null_tables () const |
| Item * | neg_transformer (THD *thd) |
| Item * Item_func_nop_all::neg_transformer | ( | THD * | thd | ) | [virtual] |
Apply NOT transformation to the item and return a new one.
Transform the item using next rules:
a AND b AND ... -> NOT(a) OR NOT(b) OR ...
a OR b OR ... -> NOT(a) AND NOT(b) AND ...
NOT(a) -> a
a = b -> a != b
a != b -> a = b
a < b -> a >= b
a >= b -> a < b
a > b -> a <= b
a <= b -> a > b
IS NULL(a) -> IS NOT NULL(a)
IS NOT NULL(a) -> IS NULL(a)
| thd | thread handler |
Reimplemented from Item_func_not_all.
| longlong Item_func_nop_all::val_int | ( | void | ) | [virtual] |
Special NOP (No OPeration) for ALL subquery. It is like Item_func_not_all.
Reimplemented from Item_func_not_all.
1.7.6.1