17
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
22
#include <drizzled/function/time/now.h>
23
#include <drizzled/current_session.h>
24
23
#include <drizzled/session.h>
26
#include <drizzled/temporal.h>
25
#include "drizzled/temporal.h"
42
40
decimals= DATETIME_DEC;
43
41
collation.set(&my_charset_bin);
47
ltime.time_type= type::DRIZZLE_TIMESTAMP_DATETIME;
49
store_now_in_TIME(ltime);
53
size_t length= type::Time::MAX_STRING_LENGTH;
54
ltime.convert(buff, length);
56
max_length= buff_length= length;
43
memset(<ime, 0, sizeof(type::Time));
45
ltime.time_type= DRIZZLE_TIMESTAMP_DATETIME;
47
store_now_in_TIME(<ime);
48
value= (int64_t) TIME_to_uint64_t_datetime(<ime);
50
buff_length= (uint) my_datetime_to_str(<ime, buff);
51
max_length= buff_length;
60
55
Converts current time in time_t to type::Time represenatation for local
61
56
time zone. Defines time zone (local) used for whole NOW function.
63
void Item_func_now_local::store_now_in_TIME(type::Time &now_time)
58
void Item_func_now_local::store_now_in_TIME(type::Time *now_time)
65
60
Session *session= current_session;
66
61
uint32_t fractional_seconds= 0;
67
62
time_t tmp= session->getCurrentTimestampEpoch(fractional_seconds);
70
now_time->store(tmp, fractional_seconds, true);
72
now_time.store(tmp, fractional_seconds);
64
(void) cached_temporal.from_time_t(tmp);
66
now_time->year= cached_temporal.years();
67
now_time->month= cached_temporal.months();
68
now_time->day= cached_temporal.days();
69
now_time->hour= cached_temporal.hours();
70
now_time->minute= cached_temporal.minutes();
71
now_time->second= cached_temporal.seconds();
72
now_time->second_part= fractional_seconds;
77
77
Converts current time in time_t to type::Time represenatation for UTC
78
78
time zone. Defines time zone (UTC) used for whole UTC_TIMESTAMP function.
80
void Item_func_now_utc::store_now_in_TIME(type::Time &now_time)
80
void Item_func_now_utc::store_now_in_TIME(type::Time *now_time)
82
82
Session *session= current_session;
83
83
uint32_t fractional_seconds= 0;
84
84
time_t tmp= session->getCurrentTimestampEpoch(fractional_seconds);
86
now_time.store(tmp, fractional_seconds);
86
(void) cached_temporal.from_time_t(tmp);
88
now_time->year= cached_temporal.years();
89
now_time->month= cached_temporal.months();
90
now_time->day= cached_temporal.days();
91
now_time->hour= cached_temporal.hours();
92
now_time->minute= cached_temporal.minutes();
93
now_time->second= cached_temporal.seconds();
94
now_time->second_part= fractional_seconds;
89
97
bool Item_func_now::get_temporal(DateTime &to)
102
111
int Item_func_now::save_in_field(Field *to, bool )
104
113
to->set_notnull();
105
return to->store_time(ltime, type::DRIZZLE_TIMESTAMP_DATETIME);
114
return to->store_time(<ime, DRIZZLE_TIMESTAMP_DATETIME);
108
117
} /* namespace drizzled */