~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/string.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:
95
95
    str_value.append(str, length);
96
96
    max_length= str_value.numchars() * collation.collation->mbmaxlen;
97
97
  }
98
 
  virtual void print(String *str, enum_query_type query_type);
 
98
  virtual void print(String *str);
99
99
 
100
100
  /**
101
101
    Return true if character-set-introducer was explicitly specified in the
152
152
  {}
153
153
  Item *safe_charset_converter(const CHARSET_INFO * const tocs);
154
154
 
155
 
  virtual inline void print(String *str, enum_query_type)
 
155
  virtual inline void print(String *str)
156
156
  {
157
157
    str->append(func_name);
158
158
  }