~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/str.h

  • Committer: Jay Pipes
  • Date: 2009-02-04 15:44:25 UTC
  • mfrom: (829 drizzle)
  • mto: This revision was merged to the branch mainline in revision 830.
  • Revision ID: jpipes@serialcoder-20090204154425-th8xfk2ujz2y8xwg
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
            const char *field_name_arg, const CHARSET_INFO * const charset);
39
39
  Item_result result_type () const { return STRING_RESULT; }
40
40
  uint32_t decimals() const { return NOT_FIXED_DEC; }
 
41
 
 
42
  using Field::store;
41
43
  int  store(double nr);
42
44
  int  store(int64_t nr, bool unsigned_val)=0;
43
45
  int  store_decimal(const my_decimal *);
44
46
  int  store(const char *to,uint32_t length, const CHARSET_INFO * const cs)=0;
 
47
 
45
48
  uint32_t size_of() const { return sizeof(*this); }
46
49
  const CHARSET_INFO *charset(void) const { return field_charset; }
47
50
  void set_charset(const CHARSET_INFO * const charset_arg)