~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/hex_string.h

fixes for the installing from source doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
  enum Item_result result_type () const { return STRING_RESULT; }
45
45
  enum Item_result cast_to_int_type() const { return INT_RESULT; }
46
46
  enum_field_types field_type() const { return DRIZZLE_TYPE_VARCHAR; }
47
 
  virtual void print(String *str, enum_query_type query_type);
 
47
  virtual void print(String *str);
48
48
  bool eq(const Item *item, bool binary_cmp) const;
49
49
  virtual Item *safe_charset_converter(const CHARSET_INFO * const tocs);
50
50
};