17
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20
#include <drizzled/server_includes.h>
20
#include "drizzled/server_includes.h"
22
#include <drizzled/function/time/month.h>
23
#include <drizzled/session.h>
22
#include "drizzled/temporal.h"
23
#include "drizzled/error.h"
24
#include "drizzled/session.h"
25
#include "drizzled/function/time/month.h"
25
27
int64_t Item_func_month::val_int()
29
(void) get_arg0_date(<ime, TIME_FUZZY_DATE);
30
return (int64_t) ltime.month;
31
if (args[0]->is_null())
33
/* For NULL argument, we return a NULL result */
38
/* Grab the first argument as a DateTime object */
39
drizzled::DateTime temporal;
40
Item_result arg0_result_type= args[0]->result_type();
42
switch (arg0_result_type)
46
char buff[DRIZZLE_MAX_LENGTH_DATETIME_AS_STRING];
47
String tmp(buff,sizeof(buff), &my_charset_utf8_bin);
48
String *res= args[0]->val_str(&tmp);
49
if (! temporal.from_string(res->c_ptr(), res->length()))
52
* Could not interpret the function argument as a temporal value,
53
* so throw an error and return 0
55
my_error(ER_INVALID_DATETIME_VALUE, MYF(0), res->c_ptr());
61
if (temporal.from_int64_t(args[0]->val_int()))
63
/* Intentionally fall-through on invalid conversion from integer */
67
* Could not interpret the function argument as a temporal value,
68
* so throw an error and return 0
71
char buff[DRIZZLE_MAX_LENGTH_DATETIME_AS_STRING];
72
String tmp(buff,sizeof(buff), &my_charset_utf8_bin);
75
res= args[0]->val_str(&tmp);
77
my_error(ER_INVALID_DATETIME_VALUE, MYF(0), res->c_ptr());
81
return (int64_t) temporal.months();
34
84
String* Item_func_monthname::val_str(String* str)
88
if (args[0]->is_null())
90
/* For NULL argument, we return a NULL result */
37
94
const char *month_name;
38
95
uint32_t month= (uint) val_int();
39
96
Session *session= current_session;