~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/cmpfunc.h

  • Committer: Brian Aker
  • Date: 2009-02-07 22:02:41 UTC
  • Revision ID: brian@tangent.org-20090207220241-ez3828o1246ab2sp
Removing on typedeffed class.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1436
1436
  bool add_at_head(Item *item) { return list.push_front(item); }
1437
1437
  void add_at_head(List<Item> *nlist) { list.prepand(nlist); }
1438
1438
  bool fix_fields(Session *, Item **ref);
1439
 
  void fix_after_pullout(st_select_lex *new_parent, Item **ref);
 
1439
  void fix_after_pullout(Select_Lex *new_parent, Item **ref);
1440
1440
 
1441
1441
  enum Type type() const { return COND_ITEM; }
1442
1442
  List<Item>* argument_list() { return &list; }