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)
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()))
64
* Could not interpret the function argument as a temporal value,
65
* so throw an error and return 0
69
String tmp(buff,sizeof(buff), &my_charset_utf8_bin);
72
res= args[0]->val_str(&tmp);
74
my_error(ER_INVALID_DATETIME_VALUE, MYF(0), res->c_ptr());
81
* Could not interpret the function argument as a temporal value,
82
* so throw an error and return 0
86
String tmp(buff,sizeof(buff), &my_charset_utf8_bin);
89
res= args[0]->val_str(&tmp);
91
my_error(ER_INVALID_DATETIME_VALUE, MYF(0), res->c_ptr());
95
return (int64_t) temporal.months();
34
98
String* Item_func_monthname::val_str(String* str)
102
if (args[0]->is_null())
104
/* For NULL argument, we return a NULL result */
37
108
const char *month_name;
38
109
uint32_t month= (uint) val_int();
39
110
Session *session= current_session;