~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/field/string.h

  • Committer: Brian Aker
  • Date: 2008-07-22 18:31:32 UTC
  • Revision ID: brian@tangent.org-20080722183132-ne2ntl7g7mdf2eez
uint32 -> uin32_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
class Field_string :public Field_longstr {
27
27
public:
28
28
  bool can_alter_field_type;
29
 
  Field_string(uchar *ptr_arg, uint32 len_arg,uchar *null_ptr_arg,
 
29
  Field_string(uchar *ptr_arg, uint32_t len_arg,uchar *null_ptr_arg,
30
30
               uchar null_bit_arg,
31
31
               enum utype unireg_check_arg, const char *field_name_arg,
32
32
               CHARSET_INFO *cs)
33
33
    :Field_longstr(ptr_arg, len_arg, null_ptr_arg, null_bit_arg,
34
34
                   unireg_check_arg, field_name_arg, cs),
35
35
     can_alter_field_type(1) {};
36
 
  Field_string(uint32 len_arg,bool maybe_null_arg, const char *field_name_arg,
 
36
  Field_string(uint32_t len_arg,bool maybe_null_arg, const char *field_name_arg,
37
37
               CHARSET_INFO *cs)
38
38
    :Field_longstr((uchar*) 0, len_arg, maybe_null_arg ? (uchar*) "": 0, 0,
39
39
                   NONE, field_name_arg, cs),