~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Jay Pipes
  • Date: 2009-01-30 04:38:21 UTC
  • mto: This revision was merged to the branch mainline in revision 830.
  • Revision ID: jpipes@serialcoder-20090130043821-4d7jg2ftabefamxb
Fixes for the QUARTER() function to use new Temporal system and throw
errors on bad datetime values.

Added test case for QUARTER() function and modified func_time.test existing
test to correctly throw errors and report NULL, not 0 on NULL input.

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"
24
 
#include "drizzled/temporal.h"
25
 
 
26
 
namespace drizzled
27
 
{
 
23
#include <drizzled/function/time/date.h>
28
24
 
29
25
/* Abstract CURDATE function. See also Item_func_curtime. */
 
26
 
30
27
class Item_func_curdate :public Item_date
31
28
{
32
 
protected:
 
29
  int64_t value;
33
30
  DRIZZLE_TIME ltime;
34
 
  Date cached_temporal;
35
31
public:
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();
38
 
  /**
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.
43
 
   *
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.
46
 
   *
47
 
   * Always returns true, since a Date can always be constructed
48
 
   * from a time_t
49
 
   *
50
 
   * @param Reference to a Date to populate
51
 
   */
52
 
  bool get_temporal(Date &temporal);
 
36
  bool get_date(DRIZZLE_TIME *res, uint32_t fuzzy_date);
53
37
  virtual void store_now_in_TIME(DRIZZLE_TIME *now_time)=0;
 
38
  bool check_vcol_func_processor(unsigned char *)
 
39
  { return true; }
54
40
};
55
41
 
56
42
class Item_func_curdate_local :public Item_func_curdate
69
55
  void store_now_in_TIME(DRIZZLE_TIME *now_time);
70
56
};
71
57
 
72
 
} /* namespace drizzled */
73
 
 
74
58
#endif /* DRIZZLED_FUNCTION_TIME_CURDATE_H */