~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/datetime.h

  • Committer: Brian Aker
  • Date: 2008-10-29 13:46:43 UTC
  • Revision ID: brian@tangent.org-20081029134643-z6jcwjvyruhk2vlu
Updates for ignore file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#ifndef DRIZZLED_FIELD_DATETIME_H
22
 
#define DRIZZLED_FIELD_DATETIME_H
23
 
 
24
 
#include <drizzled/field/str.h>
25
 
 
26
 
namespace drizzled
27
 
{
 
21
#ifndef DRIZZLE_SERVER_FIELD_DATETIME
 
22
#define DRIZZLE_SERVER_FIELD_DATETIME
28
23
 
29
24
class Field_datetime :public Field_str {
30
25
public:
31
 
 
32
 
  using Field::store;
33
 
  using Field::val_int;
34
 
  using Field::val_str;
35
 
  using Field::cmp;
36
 
 
37
 
  Field_datetime(unsigned char *ptr_arg,
38
 
                 unsigned char *null_ptr_arg,
39
 
                 unsigned char null_bit_arg,
40
 
                 const char *field_name_arg) :
41
 
    Field_str(ptr_arg,
42
 
               19,
43
 
               null_ptr_arg,
44
 
               null_bit_arg,
45
 
               field_name_arg,
46
 
               &my_charset_bin)
47
 
  {}
48
 
 
49
 
  Field_datetime(bool maybe_null_arg,
50
 
                 const char *field_name_arg) :
51
 
    Field_str((unsigned char*) 0,
52
 
               19,
53
 
               maybe_null_arg ? (unsigned char*) "": 0,
54
 
               0,
55
 
               field_name_arg,
56
 
               &my_charset_bin) 
57
 
  {}
58
 
 
 
26
  Field_datetime(unsigned char *ptr_arg, unsigned char *null_ptr_arg, unsigned char null_bit_arg,
 
27
                 enum utype unireg_check_arg, const char *field_name_arg,
 
28
                 const CHARSET_INFO * const cs)
 
29
    :Field_str(ptr_arg, 19, null_ptr_arg, null_bit_arg,
 
30
               unireg_check_arg, field_name_arg, cs)
 
31
    {}
 
32
  Field_datetime(bool maybe_null_arg, const char *field_name_arg,
 
33
                 const CHARSET_INFO * const cs)
 
34
    :Field_str((unsigned char*) 0,19, maybe_null_arg ? (unsigned char*) "": 0,0,
 
35
               NONE, field_name_arg, cs) {}
59
36
  enum_field_types type() const { return DRIZZLE_TYPE_DATETIME;}
60
37
  enum ha_base_keytype key_type() const { return HA_KEYTYPE_ULONGLONG; }
61
38
  enum Item_result cmp_type () const { return INT_RESULT; }
63
40
  int  store(const char *to,uint32_t length, const CHARSET_INFO * const charset);
64
41
  int  store(double nr);
65
42
  int  store(int64_t nr, bool unsigned_val);
66
 
  int store_time(type::Time &ltime, type::timestamp_t type);
 
43
  int store_time(DRIZZLE_TIME *ltime, enum enum_drizzle_timestamp_type type);
67
44
  int reset(void)
68
45
  {
69
46
    ptr[0]=ptr[1]=ptr[2]=ptr[3]=ptr[4]=ptr[5]=ptr[6]=ptr[7]=0;
70
47
    return 0;
71
48
  }
72
 
  double val_real(void) const;
73
 
  int64_t val_int(void) const;
74
 
  String *val_str(String*,String *) const;
 
49
  double val_real(void);
 
50
  int64_t val_int(void);
 
51
  String *val_str(String*,String *);
 
52
  bool send_binary(Protocol *protocol);
75
53
  int cmp(const unsigned char *,const unsigned char *);
76
54
  void sort_string(unsigned char *buff,uint32_t length);
77
55
  uint32_t pack_length() const { return 8; }
78
56
  void sql_type(String &str) const;
79
57
  bool can_be_compared_as_int64_t() const { return true; }
80
58
  bool zero_pack() const { return 1; }
81
 
  bool get_date(type::Time &ltime,uint32_t fuzzydate) const;
82
 
  bool get_time(type::Time &ltime) const;
 
59
  bool get_date(DRIZZLE_TIME *ltime,uint32_t fuzzydate);
 
60
  bool get_time(DRIZZLE_TIME *ltime);
83
61
};
84
62
 
85
 
} /* namespace drizzled */
 
63
#endif
86
64
 
87
 
#endif /* DRIZZLED_FIELD_DATETIME_H */