~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/str.h

  • Committer: Monty Taylor
  • Date: 2009-01-30 04:39:04 UTC
  • mto: (779.7.3 devel)
  • mto: This revision was merged to the branch mainline in revision 823.
  • Revision ID: mordred@inaugust.com-20090130043904-gphdonl7m6zdz06v
Cleaned up warnings up through innodb.

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;
45
 
  virtual int store(const char *to, uint32_t length, 
46
 
                    const CHARSET_INFO * const cs,
47
 
                    enum_check_fields check_level)
48
 
  {
49
 
    return Field::store(to, length, cs, check_level);
50
 
  }
 
47
 
51
48
  uint32_t size_of() const { return sizeof(*this); }
52
49
  const CHARSET_INFO *charset(void) const { return field_charset; }
53
50
  void set_charset(const CHARSET_INFO * const charset_arg)