~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/timestamp.h

Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
  using Field::val_str;
34
34
  using Field::cmp;
35
35
  using Field::store;
36
 
  Field_timestamp(unsigned char *ptr_arg, uint32_t len_arg,
37
 
                  unsigned char *null_ptr_arg, unsigned char null_bit_arg,
38
 
                  enum utype unireg_check_arg, const char *field_name_arg,
39
 
                  TableShare *share, const CHARSET_INFO * const cs);
40
 
  Field_timestamp(bool maybe_null_arg, const char *field_name_arg,
 
36
  Field_timestamp(unsigned char *ptr_arg,
 
37
                  uint32_t len_arg,
 
38
                  unsigned char *null_ptr_arg,
 
39
                  unsigned char null_bit_arg,
 
40
                  enum utype unireg_check_arg,
 
41
                  const char *field_name_arg,
 
42
                  TableShare *share,
 
43
                  const CHARSET_INFO * const cs);
 
44
  Field_timestamp(bool maybe_null_arg,
 
45
                  const char *field_name_arg,
41
46
                  const CHARSET_INFO * const cs);
42
47
  enum_field_types type() const { return DRIZZLE_TYPE_TIMESTAMP;}
43
48
  enum ha_base_keytype key_type() const { return HA_KEYTYPE_ULONG_INT; }