17
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
22
#include <drizzled/function/time/unix_timestamp.h>
23
23
#include <drizzled/field/epoch.h>
24
24
#include <drizzled/session.h>
31
31
int64_t Item_func_unix_timestamp::val_int()
39
39
if (args[0]->type() == FIELD_ITEM)
40
40
{ // Optimize timestamp field
41
41
Field *field=((Item_field*) args[0])->field;
43
43
return ((field::Epoch::pointer) field)->get_timestamp(&null_value);
49
49
We have to set null_value again because get_arg0_date will also set it