mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
removed incorrect destructor (to prevent deleting item by recursion instead of by list scanning in case of chained OR or AND)
This commit is contained in:
parent
4c8387706a
commit
73964382a7
1 changed files with 0 additions and 1 deletions
|
@ -534,7 +534,6 @@ public:
|
|||
Item_cond() : Item_bool_func() { const_item_cache=0; }
|
||||
Item_cond(Item *i1,Item *i2) :Item_bool_func()
|
||||
{ list.push_back(i1); list.push_back(i2); }
|
||||
~Item_cond() { list.delete_elements(); }
|
||||
bool add(Item *item) { return list.push_back(item); }
|
||||
bool fix_fields(THD *,struct st_table_list *);
|
||||
|
||||
|
|
Loading…
Reference in a new issue