~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/field.h

  • Committer: Monty Taylor
  • Date: 2010-02-05 08:11:15 UTC
  • mfrom: (1283 build)
  • mto: (1273.13.43 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1300.
  • Revision ID: mordred@inaugust.com-20100205081115-dr82nvrwv4lvw7sd
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_ITEM_FIELD_H
21
21
#define DRIZZLED_ITEM_FIELD_H
22
22
 
 
23
namespace drizzled
 
24
{
 
25
 
23
26
extern Item **not_found_item;
24
27
class COND_EQUAL;
25
28
 
68
71
  String *str_result(String* tmp);
69
72
  my_decimal *val_decimal_result(my_decimal *);
70
73
  bool val_bool_result();
71
 
  bool send(drizzled::plugin::Client *client, String *str_arg);
 
74
  bool send(plugin::Client *client, String *str_arg);
72
75
  void reset_field(Field *f);
73
76
  bool fix_fields(Session *, Item **);
74
77
  void fix_after_pullout(Select_Lex *new_parent, Item **ref);
109
112
  friend class Select_Lex_Unit;
110
113
};
111
114
 
 
115
} /* namespace drizzled */
 
116
 
112
117
#endif /* DRIZZLED_ITEM_FIELD_H */