~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/user_var_as_out_param.h

  • Committer: Stewart Smith
  • Date: 2011-03-03 08:29:06 UTC
  • mto: (2216.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2217.
  • Revision ID: stewart@flamingspork.com-20110303082906-5zhmxub1j7au038u
remove enum_query_type which was effectively unused. It was set to one value once, compared to it once (i.e. always true) and passed around everywhere doing nothing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
  type::Decimal *val_decimal(type::Decimal *decimal_buffer);
49
49
  /* fix_fields() binds variable name with its entry structure */
50
50
  bool fix_fields(Session *session, Item **ref);
51
 
  virtual void print(String *str, enum_query_type query_type);
 
51
  virtual void print(String *str);
52
52
  void set_null_value(const CHARSET_INFO * const cs);
53
53
  void set_value(const char *str, uint32_t length, const CHARSET_INFO * const cs);
54
54
};