~hartmut-php/drizzle/drizzle-codegen

« back to all changes in this revision

Viewing changes to drizzled/function/time/curdate.h

  • Committer: Hartmut Holzgraefe
  • Date: 2009-02-21 11:38:51 UTC
  • mfrom: (884.1.12 drizzle)
  • Revision ID: hartmut@mysql.com-20090221113851-p2n577trxbr8ip7v
mergeĀ fromĀ lp:drizzle

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_FUNCTION_TIME_CURDATE_H
21
21
#define DRIZZLED_FUNCTION_TIME_CURDATE_H
22
22
 
23
 
#include <drizzled/function/time/date.h>
 
23
#include "drizzled/function/time/date.h"
 
24
#include "drizzled/temporal.h"
24
25
 
25
26
/* Abstract CURDATE function. See also Item_func_curtime. */
26
 
 
27
27
class Item_func_curdate :public Item_date
28
28
{
29
 
  int64_t value;
30
29
  DRIZZLE_TIME ltime;
 
30
  drizzled::Date cached_temporal;
31
31
public:
32
32
  Item_func_curdate() :Item_date() {}
33
 
  int64_t val_int() { assert(fixed == 1); return (value) ; }
34
 
  String *val_str(String *str);
35
33
  void fix_length_and_dec();
36
 
  bool get_date(DRIZZLE_TIME *res, uint32_t fuzzy_date);
 
34
  /**
 
35
   * All functions which inherit from Item_date must implement
 
36
   * their own get_temporal() method, which takes a supplied
 
37
   * drizzled::Date reference and populates it with a correct
 
38
   * date based on the semantics of the function.
 
39
   *
 
40
   * For CURDATE() and sisters, there is no argument, and we 
 
41
   * return a cached Date value that we create during fix_length_and_dec.
 
42
   *
 
43
   * Always returns true, since a Date can always be constructed
 
44
   * from a time_t
 
45
   *
 
46
   * @param Reference to a drizzled::Date to populate
 
47
   */
 
48
  bool get_temporal(drizzled::Date &temporal);
37
49
  virtual void store_now_in_TIME(DRIZZLE_TIME *now_time)=0;
38
50
  bool check_vcol_func_processor(unsigned char *)
39
51
  { return true; }