~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/blob.h

  • Committer: Brian Aker
  • Date: 2008-11-25 19:51:05 UTC
  • Revision ID: brian@tangent.org-20081125195105-bltdxwzcayjishqy
ulong fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
  Field_blob(unsigned char *ptr_arg, unsigned char *null_ptr_arg, unsigned char null_bit_arg,
32
32
             enum utype unireg_check_arg, const char *field_name_arg,
33
33
             TABLE_SHARE *share, uint32_t blob_pack_length, const CHARSET_INFO * const cs);
34
 
  Field_blob(uint32_t len_arg,bool maybe_null_arg, const char *field_name_arg,
 
34
  Field_blob(uint32_t len_arg, bool maybe_null_arg, const char *field_name_arg,
35
35
             const CHARSET_INFO * const cs)
36
36
    :Field_longstr((unsigned char*) 0, len_arg, maybe_null_arg ? (unsigned char*) "": 0, 0,
37
37
                   NONE, field_name_arg, cs),
39
39
  {
40
40
    flags|= BLOB_FLAG;
41
41
  }
42
 
  Field_blob(uint32_t len_arg,bool maybe_null_arg, const char *field_name_arg,
 
42
  Field_blob(uint32_t len_arg, bool maybe_null_arg, const char *field_name_arg,
43
43
             const CHARSET_INFO * const cs, bool set_packlength)
44
44
    :Field_longstr((unsigned char*) 0,len_arg, maybe_null_arg ? (unsigned char*) "": 0, 0,
45
45
                   NONE, field_name_arg, cs)