17
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20
#include <drizzled/server_includes.h>
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"
31
27
String *Item_func_now::val_str(String *)
33
29
assert(fixed == 1);
34
30
str_value.set(buff, buff_length, &my_charset_bin);
42
37
decimals= DATETIME_DEC;
43
38
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;
40
memset(<ime, 0, sizeof(DRIZZLE_TIME));
42
ltime.time_type= DRIZZLE_TIMESTAMP_DATETIME;
44
store_now_in_TIME(<ime);
45
value= (int64_t) TIME_to_uint64_t_datetime(<ime);
47
buff_length= (uint) my_datetime_to_str(<ime, buff);
48
max_length= buff_length;
60
Converts current time in time_t to type::Time represenatation for local
52
Converts current time in time_t to DRIZZLE_TIME represenatation for local
61
53
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)
55
void Item_func_now_local::store_now_in_TIME(DRIZZLE_TIME *now_time)
65
57
Session *session= current_session;
66
uint32_t fractional_seconds= 0;
67
time_t tmp= session->getCurrentTimestampEpoch(fractional_seconds);
70
now_time->store(tmp, fractional_seconds, true);
72
now_time.store(tmp, fractional_seconds);
58
time_t tmp= session->query_start();
60
(void) cached_temporal.from_time_t(tmp);
62
now_time->year= cached_temporal.years();
63
now_time->month= cached_temporal.months();
64
now_time->day= cached_temporal.days();
65
now_time->hour= cached_temporal.hours();
66
now_time->minute= cached_temporal.minutes();
67
now_time->second= cached_temporal.seconds();
77
Converts current time in time_t to type::Time represenatation for UTC
72
Converts current time in time_t to DRIZZLE_TIME represenatation for UTC
78
73
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)
75
void Item_func_now_utc::store_now_in_TIME(DRIZZLE_TIME *now_time)
82
77
Session *session= current_session;
83
uint32_t fractional_seconds= 0;
84
time_t tmp= session->getCurrentTimestampEpoch(fractional_seconds);
86
now_time.store(tmp, fractional_seconds);
78
time_t tmp= session->query_start();
80
(void) cached_temporal.from_time_t(tmp);
82
now_time->year= cached_temporal.years();
83
now_time->month= cached_temporal.months();
84
now_time->day= cached_temporal.days();
85
now_time->hour= cached_temporal.hours();
86
now_time->minute= cached_temporal.minutes();
87
now_time->second= cached_temporal.seconds();
89
bool Item_func_now::get_temporal(DateTime &to)
90
bool Item_func_now::get_temporal(drizzled::DateTime &to)
91
92
to= cached_temporal;
95
bool Item_func_now::get_date(type::Time &res, uint32_t )
96
bool Item_func_now::get_date(DRIZZLE_TIME *res,