~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/field/double.h

  • Committer: Brian Aker
  • Date: 2008-07-23 00:11:39 UTC
  • Revision ID: brian@tangent.org-20080723001139-967ewfngqqotwb6e
Removed final uint dead types.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
  Field_double(uchar *ptr_arg, uint32_t len_arg, uchar *null_ptr_arg,
29
29
               uchar null_bit_arg,
30
30
               enum utype unireg_check_arg, const char *field_name_arg,
31
 
               uint8 dec_arg,bool zero_arg,bool unsigned_arg)
 
31
               uint8_t dec_arg,bool zero_arg,bool unsigned_arg)
32
32
    :Field_real(ptr_arg, len_arg, null_ptr_arg, null_bit_arg,
33
33
                unireg_check_arg, field_name_arg,
34
34
                dec_arg, zero_arg, unsigned_arg)
35
35
    {}
36
36
  Field_double(uint32_t len_arg, bool maybe_null_arg, const char *field_name_arg,
37
 
               uint8 dec_arg)
 
37
               uint8_t dec_arg)
38
38
    :Field_real((uchar*) 0, len_arg, maybe_null_arg ? (uchar*) "" : 0, (uint) 0,
39
39
                NONE, field_name_arg, dec_arg, 0, 0)
40
40
    {}
41
41
  Field_double(uint32_t len_arg, bool maybe_null_arg, const char *field_name_arg,
42
 
               uint8 dec_arg, my_bool not_fixed_arg)
 
42
               uint8_t dec_arg, my_bool not_fixed_arg)
43
43
    :Field_real((uchar*) 0, len_arg, maybe_null_arg ? (uchar*) "" : 0, (uint) 0,
44
44
                NONE, field_name_arg, dec_arg, 0, 0)
45
45
    {not_fixed= not_fixed_arg; }