1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
#include "drizzled/function/time/last_day.h"
23
#include "drizzled/error.h"
24
#include "drizzled/calendar.h"
25
#include "drizzled/temporal.h"
34
* Interpret the first argument as a DateTime string and then populate
35
* our supplied temporal object with a Date representing the last day of
36
* the corresponding month and year.
38
bool Item_func_last_day::get_temporal(Date &to)
42
/* We return NULL from LAST_DAY() only when supplied a NULL argument */
43
if (args[0]->null_value)
49
/* We use a DateTime to match as many temporal formats as possible. */
51
Item_result arg0_result_type= args[0]->result_type();
53
switch (arg0_result_type)
58
* For doubles supplied, interpret the arg as a string,
59
* so intentionally fall-through here...
60
* This allows us to accept double parameters like
61
* 19971231235959.01 and interpret it the way MySQL does:
62
* as a TIMESTAMP-like thing with a microsecond component.
63
* Ugh, but need to keep backwards-compat.
67
char buff[DRIZZLE_MAX_LENGTH_DATETIME_AS_STRING];
68
String tmp(buff,sizeof(buff), &my_charset_utf8_bin);
69
String *res= args[0]->val_str(&tmp);
74
* Likely a nested function issue where the nested
75
* function had bad input. We rely on the nested
76
* function my_error() and simply return false here.
86
if (! temporal.from_string(tmp.c_ptr(), tmp.length()))
89
* Could not interpret the function argument as a temporal value,
90
* so throw an error and return 0
92
my_error(ER_INVALID_DATETIME_VALUE, MYF(0), tmp.c_ptr());
98
if (temporal.from_int64_t(args[0]->val_int()))
100
/* Intentionally fall-through on invalid conversion from integer */
104
* Could not interpret the function argument as a temporal value,
105
* so throw an error and return 0
108
char buff[DRIZZLE_MAX_LENGTH_DATETIME_AS_STRING];
109
String tmp(buff,sizeof(buff), &my_charset_utf8_bin);
112
res= args[0]->val_str(&tmp);
117
* Likely a nested function issue where the nested
118
* function had bad input. We rely on the nested
119
* function my_error() and simply return false here.
129
my_error(ER_INVALID_DATETIME_VALUE, MYF(0), tmp.c_ptr());
135
/* Now strip to the last day of the month... */
136
temporal.set_days(days_in_gregorian_year_month(temporal.years(), temporal.months()));
137
to= temporal; /* Operator overload in effect for assign DateTime to Date. */
142
} /* namespace drizzled */