~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/set_user_var.h

  • Committer: Monty Taylor
  • Date: 2010-02-11 01:35:55 UTC
  • mfrom: (1289 staging)
  • mto: This revision was merged to the branch mainline in revision 1293.
  • Revision ID: mordred@inaugust.com-20100211013555-f9okqsgi91mwm4xu
Merged up with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <drizzled/function/func.h>
24
24
 
 
25
namespace drizzled
 
26
{
 
27
 
25
28
/* Handling of user definable variables */
26
29
 
27
30
class user_var_entry;
58
61
  my_decimal *val_decimal_result(my_decimal *);
59
62
  bool update_hash(void *ptr, uint32_t length, enum Item_result type,
60
63
                   const CHARSET_INFO * const cs, Derivation dv, bool unsigned_arg);
61
 
  bool send(drizzled::plugin::Client *client, String *str_arg);
 
64
  bool send(plugin::Client *client, String *str_arg);
62
65
  void make_field(SendField *tmp_field);
63
66
  bool check(bool use_result_field);
64
67
  bool update();
78
81
  bool register_field_in_read_map(unsigned char *arg);
79
82
};
80
83
 
 
84
} /* namespace drizzled */
 
85
 
81
86
#endif /* DRIZZLED_FUNCTION_SET_USER_VAR_H */