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:
bell@sanja.is.com.ua 2004-06-03 15:38:38 +03:00
parent 4c8387706a
commit 73964382a7

View file

@ -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 *);