~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/str.h

  • Committer: Monty Taylor
  • Date: 2009-01-29 00:39:19 UTC
  • mto: (779.7.3 devel)
  • mto: This revision was merged to the branch mainline in revision 823.
  • Revision ID: mordred@inaugust.com-20090129003919-8tv61hkqqs9xr2pk
Some Sun warning fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
  int  store(int64_t nr, bool unsigned_val)=0;
43
43
  int  store_decimal(const my_decimal *);
44
44
  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
  }
45
51
  uint32_t size_of() const { return sizeof(*this); }
46
52
  const CHARSET_INFO *charset(void) const { return field_charset; }
47
53
  void set_charset(const CHARSET_INFO * const charset_arg)