~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/varstring.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:
50
50
                  unsigned char *null_ptr_arg,
51
51
                  unsigned char null_bit_arg,
52
52
                  const char *field_name_arg,
53
 
                  const CHARSET_INFO * const cs);
 
53
                  const charset_info_st * const cs);
54
54
  Field_varstring(uint32_t len_arg,
55
55
                  bool maybe_null_arg,
56
56
                  const char *field_name_arg,
57
 
                  const CHARSET_INFO * const cs);
 
57
                  const charset_info_st * const cs);
58
58
 
59
59
  enum_field_types type() const { return DRIZZLE_TYPE_VARCHAR; }
60
60
  enum ha_base_keytype key_type() const;
68
68
    return (uint32_t) field_length + (field_charset == &my_charset_bin ?
69
69
                                      length_bytes : 0);
70
70
  }
71
 
  int  store(const char *to,uint32_t length, const CHARSET_INFO * const charset);
 
71
  int  store(const char *to,uint32_t length, const charset_info_st * const charset);
72
72
 
73
73
 
74
74
  int  store(int64_t nr, bool unsigned_val);