~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/blob.h

  • Committer: Andrew Hutchings
  • Date: 2011-03-29 20:45:43 UTC
  • mfrom: (2257 drizzle)
  • mto: (2257.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2258.
  • Revision ID: andrew@linuxjedi.co.uk-20110329204543-ssex0nuo8knncgwx
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
             unsigned char null_bit_arg,
54
54
             const char *field_name_arg,
55
55
             TableShare *share,
56
 
             const CHARSET_INFO * const cs);
 
56
             const charset_info_st * const cs);
57
57
  Field_blob(uint32_t len_arg,
58
58
             bool maybe_null_arg,
59
59
             const char *field_name_arg,
60
 
             const CHARSET_INFO * const cs)
 
60
             const charset_info_st * const cs)
61
61
    :Field_str((unsigned char*) NULL,
62
62
               len_arg,
63
63
               maybe_null_arg ? (unsigned char *) "": 0,
72
72
  enum ha_base_keytype key_type() const
73
73
    { return binary() ? HA_KEYTYPE_VARBINARY2 : HA_KEYTYPE_VARTEXT2; }
74
74
  int  store(const char *to,uint32_t length,
75
 
             const CHARSET_INFO * const charset);
 
75
             const charset_info_st * const charset);
76
76
  int  store(double nr);
77
77
  int  store(int64_t nr, bool unsigned_val);
78
78