~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/datetime.h

  • Committer: Lee Bieber
  • Date: 2011-03-29 22:31:41 UTC
  • mfrom: (2257.1.3 build)
  • Revision ID: kalebral@gmail.com-20110329223141-yxc22h3l2he58sk0
Merge Andrew - 743842: Build failure using GCC 4.6
Merge Stewart - 738022: CachedDirectory silently fails to add entries if stat() fails
Merge Olaf - Common fwd: add copyright, add more declaration

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
 
21
#pragma once
23
22
 
24
23
#include <drizzled/field/str.h>
25
24
 
37
36
  Field_datetime(unsigned char *ptr_arg,
38
37
                 unsigned char *null_ptr_arg,
39
38
                 unsigned char null_bit_arg,
40
 
                 const char *field_name_arg,
41
 
                 const CHARSET_INFO * const cs)
42
 
    :Field_str(ptr_arg,
 
39
                 const char *field_name_arg) :
 
40
    Field_str(ptr_arg,
43
41
               19,
44
42
               null_ptr_arg,
45
43
               null_bit_arg,
46
44
               field_name_arg,
47
 
               cs)
 
45
               &my_charset_bin)
48
46
  {}
 
47
 
49
48
  Field_datetime(bool maybe_null_arg,
50
 
                 const char *field_name_arg,
51
 
                 const CHARSET_INFO * const cs)
52
 
    :Field_str((unsigned char*) 0,
 
49
                 const char *field_name_arg) :
 
50
    Field_str((unsigned char*) 0,
53
51
               19,
54
52
               maybe_null_arg ? (unsigned char*) "": 0,
55
53
               0,
56
54
               field_name_arg,
57
 
               cs) 
 
55
               &my_charset_bin) 
58
56
  {}
 
57
 
59
58
  enum_field_types type() const { return DRIZZLE_TYPE_DATETIME;}
60
59
  enum ha_base_keytype key_type() const { return HA_KEYTYPE_ULONGLONG; }
61
60
  enum Item_result cmp_type () const { return INT_RESULT; }
62
61
  uint32_t decimals() const { return DATETIME_DEC; }
63
 
  int  store(const char *to,uint32_t length, const CHARSET_INFO * const charset);
 
62
  int  store(const char *to,uint32_t length, const charset_info_st * const charset);
64
63
  int  store(double nr);
65
64
  int  store(int64_t nr, bool unsigned_val);
66
65
  int store_time(type::Time &ltime, type::timestamp_t type);
69
68
    ptr[0]=ptr[1]=ptr[2]=ptr[3]=ptr[4]=ptr[5]=ptr[6]=ptr[7]=0;
70
69
    return 0;
71
70
  }
72
 
  double val_real(void);
73
 
  int64_t val_int(void);
74
 
  String *val_str(String*,String *);
 
71
  double val_real(void) const;
 
72
  int64_t val_int(void) const;
 
73
  String *val_str(String*,String *) const;
75
74
  int cmp(const unsigned char *,const unsigned char *);
76
75
  void sort_string(unsigned char *buff,uint32_t length);
77
76
  uint32_t pack_length() const { return 8; }
78
77
  void sql_type(String &str) const;
79
78
  bool can_be_compared_as_int64_t() const { return true; }
80
79
  bool zero_pack() const { return 1; }
81
 
  bool get_date(type::Time &ltime,uint32_t fuzzydate);
82
 
  bool get_time(type::Time &ltime);
 
80
  bool get_date(type::Time &ltime,uint32_t fuzzydate) const;
 
81
  bool get_time(type::Time &ltime) const;
83
82
};
84
83
 
85
84
} /* namespace drizzled */
86
85
 
87
 
#endif /* DRIZZLED_FIELD_DATETIME_H */