~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/double.h

  • Committer: Brian Aker
  • Date: 2009-02-21 00:18:15 UTC
  • Revision ID: brian@tangent.org-20090221001815-x20e8h71e984lvs1
Completion (?) of uint conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
    {}
37
37
  Field_double(uint32_t len_arg, bool maybe_null_arg, const char *field_name_arg,
38
38
               uint8_t dec_arg)
39
 
    :Field_real((unsigned char*) 0, len_arg, maybe_null_arg ? (unsigned char*) "" : 0, (uint) 0,
 
39
    :Field_real((unsigned char*) 0, len_arg, maybe_null_arg ? (unsigned char*) "" : 0, (uint32_t) 0,
40
40
                NONE, field_name_arg, dec_arg, 0, 0)
41
41
    {}
42
42
  Field_double(uint32_t len_arg, bool maybe_null_arg, const char *field_name_arg,
43
43
               uint8_t dec_arg, bool not_fixed_arg)
44
 
    :Field_real((unsigned char*) 0, len_arg, maybe_null_arg ? (unsigned char*) "" : 0, (uint) 0,
 
44
    :Field_real((unsigned char*) 0, len_arg, maybe_null_arg ? (unsigned char*) "" : 0, (uint32_t) 0,
45
45
                NONE, field_name_arg, dec_arg, 0, 0)
46
46
    {not_fixed= not_fixed_arg; }
47
47
  enum_field_types type() const { return DRIZZLE_TYPE_DOUBLE;}