~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/epoch.h

  • Committer: Brian Aker
  • Date: 2011-01-08 10:35:13 UTC
  • mfrom: (2057.2.9 timestamp)
  • Revision ID: brian@tangent.org-20110108103513-3wuo8tsyajjcxjrg
Merge in fractional seconds to timestamp.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
  typedef Epoch* pointer;
39
39
 
40
40
  Epoch(unsigned char *ptr_arg,
41
 
        uint32_t len_arg,
42
41
        unsigned char *null_ptr_arg,
43
42
        unsigned char null_bit_arg,
44
43
        enum utype unireg_check_arg,
45
44
        const char *field_name_arg,
46
 
        drizzled::TableShare *share,
47
 
        const drizzled::CHARSET_INFO * const cs);
 
45
        drizzled::TableShare *share);
48
46
 
49
47
  Epoch(bool maybe_null_arg,
50
 
        const char *field_name_arg,
51
 
        const CHARSET_INFO * const cs);
 
48
        const char *field_name_arg);
52
49
 
53
50
  enum_field_types type() const { return DRIZZLE_TYPE_TIMESTAMP;}
54
51
  enum ha_base_keytype key_type() const { return HA_KEYTYPE_ULONGLONG; }
64
61
  int cmp(const unsigned char *,const unsigned char *);
65
62
  void sort_string(unsigned char *buff,uint32_t length);
66
63
  uint32_t pack_length() const { return 8; }
67
 
  void sql_type(String &str) const;
68
 
  bool can_be_compared_as_int64_t() const { return true; }
 
64
  virtual void sql_type(String &str) const;
 
65
  virtual bool can_be_compared_as_int64_t() const { return true; }
69
66
  bool zero_pack() const { return 0; }
70
 
  void set_time();
 
67
  virtual void set_time();
71
68
  virtual void set_default();
72
69
 
73
70
  /* Get TIMESTAMP field value as seconds since begging of Unix Epoch */
74
 
  long get_timestamp(bool *null_value);
 
71
  virtual long get_timestamp(bool *null_value);
 
72
 
 
73
  virtual bool is_timestamp() const
 
74
  {
 
75
    return true;
 
76
  }
75
77
 
76
78
private:
77
79
  bool get_date(type::Time *ltime,uint32_t fuzzydate);
78
80
  bool get_time(type::Time *ltime);
79
81
 
80
82
public:
81
 
  timestamp_auto_set_type get_auto_set_type() const;
 
83
  virtual timestamp_auto_set_type get_auto_set_type() const;
82
84
  static size_t max_string_length();
83
85
};
84
86