~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_row.h

  • Committer: Brian Aker
  • Date: 2008-10-20 03:40:03 UTC
  • mto: (492.3.21 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: brian@tangent.org-20081020034003-t2dcnl0ayr2ymm8k
THD -> Session rename

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
    illegal_method_call((const char*)"val_decimal");
63
63
    return 0;
64
64
  };
65
 
  bool fix_fields(THD *thd, Item **ref);
 
65
  bool fix_fields(Session *thd, Item **ref);
66
66
  void fix_after_pullout(st_select_lex *new_parent, Item **ref);
67
67
  void cleanup();
68
 
  void split_sum_func(THD *thd, Item **ref_pointer_array, List<Item> &fields);
 
68
  void split_sum_func(Session *thd, Item **ref_pointer_array, List<Item> &fields);
69
69
  table_map used_tables() const { return used_tables_cache; };
70
70
  bool const_item() const { return const_item_cache; };
71
71
  enum Item_result result_type() const { return ROW_RESULT; }