1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems, Inc.
4
* Copyright (C) 2008 Sun Microsystems
6
6
* This program is free software; you can redistribute it and/or modify
7
7
* it under the terms of the GNU General Public License as published by
21
21
#define DRIZZLED_FUNCTION_TIME_CURDATE_H
23
23
#include <drizzled/function/time/date.h>
24
#include <drizzled/temporal.h>
29
25
/* Abstract CURDATE function. See also Item_func_curtime. */
30
27
class Item_func_curdate :public Item_date
36
32
Item_func_curdate() :Item_date() {}
33
int64_t val_int() { assert(fixed == 1); return (value) ; }
34
String *val_str(String *str);
37
35
void fix_length_and_dec();
39
* All functions which inherit from Item_date must implement
40
* their own get_temporal() method, which takes a supplied
41
* Date reference and populates it with a correct
42
* date based on the semantics of the function.
44
* For CURDATE() and sisters, there is no argument, and we
45
* return a cached Date value that we create during fix_length_and_dec.
47
* Always returns true, since a Date can always be constructed
50
* @param Reference to a Date to populate
52
bool get_temporal(Date &temporal);
53
virtual void store_now_in_TIME(type::Time *now_time)=0;
36
bool get_date(DRIZZLE_TIME *res, uint32_t fuzzy_date);
37
virtual void store_now_in_TIME(DRIZZLE_TIME *now_time)=0;
38
bool check_vcol_func_processor(unsigned char *)
56
42
class Item_func_curdate_local :public Item_func_curdate
59
45
Item_func_curdate_local() :Item_func_curdate() {}
60
46
const char *func_name() const { return "curdate"; }
61
void store_now_in_TIME(type::Time *now_time);
47
void store_now_in_TIME(DRIZZLE_TIME *now_time);
64
50
class Item_func_curdate_utc :public Item_func_curdate
67
53
Item_func_curdate_utc() :Item_func_curdate() {}
68
54
const char *func_name() const { return "utc_date"; }
69
void store_now_in_TIME(type::Time *now_time);
55
void store_now_in_TIME(DRIZZLE_TIME *now_time);
72
} /* namespace drizzled */
74
58
#endif /* DRIZZLED_FUNCTION_TIME_CURDATE_H */