~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/set_user_var.h

Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef DRIZZLED_FUNCTION_SET_USER_VAR_H
21
 
#define DRIZZLED_FUNCTION_SET_USER_VAR_H
 
20
#pragma once
22
21
 
23
22
#include <drizzled/function/func.h>
24
23
 
68
67
  enum Item_result result_type () const { return cached_result_type; }
69
68
  bool fix_fields(Session *session, Item **ref);
70
69
  void fix_length_and_dec();
71
 
  virtual void print(String *str, enum_query_type query_type);
 
70
  virtual void print(String *str);
72
71
 
73
72
  const char *func_name() const { return "set_user_var"; }
74
73
  int save_in_field(Field *field, bool no_conversions,
83
82
 
84
83
} /* namespace drizzled */
85
84
 
86
 
#endif /* DRIZZLED_FUNCTION_SET_USER_VAR_H */