~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/set_user_var.h

  • Committer: Brian Aker
  • Date: 2010-04-05 23:46:43 UTC
  • Revision ID: brian@gaz-20100405234643-0he3xnj902rc70r8
Fixing tests to work with PBXT.

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(Protocol *protocol, String *str_arg);
62
 
  void make_field(Send_field *tmp_field);
 
64
  bool send(plugin::Client *client, String *str_arg);
 
65
  void make_field(SendField *tmp_field);
63
66
  bool check(bool use_result_field);
64
67
  bool update();
65
68
  enum Item_result result_type () const { return cached_result_type; }
66
69
  bool fix_fields(Session *session, Item **ref);
67
70
  void fix_length_and_dec();
68
71
  virtual void print(String *str, enum_query_type query_type);
69
 
  void print_as_stmt(String *str, enum_query_type query_type);
 
72
 
70
73
  const char *func_name() const { return "set_user_var"; }
71
74
  int save_in_field(Field *field, bool no_conversions,
72
75
                    bool can_use_result_field);
76
79
  }
77
80
  void save_org_in_field(Field *field) { (void)save_in_field(field, 1, 0); }
78
81
  bool register_field_in_read_map(unsigned char *arg);
79
 
  bool register_field_in_bitmap(unsigned char *arg);
80
82
};
81
83
 
 
84
} /* namespace drizzled */
 
85
 
82
86
#endif /* DRIZZLED_FUNCTION_SET_USER_VAR_H */