~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/cache_str.h

  • Committer: Brian Aker
  • Date: 2011-03-28 02:46:21 UTC
  • Revision ID: brian@tangent.org-20110328024621-wtkdtlvdplqm0ybf
Shift CHARSET_INFO to charset_info_st

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
  String* val_str(String *) { assert(fixed == 1); return value; }
39
39
  type::Decimal *val_decimal(type::Decimal *);
40
40
  enum Item_result result_type() const { return STRING_RESULT; }
41
 
  const CHARSET_INFO *charset() const { return value->charset(); };
 
41
  const charset_info_st *charset() const { return value->charset(); };
42
42
  int save_in_field(Field *field, bool no_conversions);
43
43
};
44
44