~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/time/date.h

  • Committer: Monty Taylor
  • Date: 2008-11-15 17:58:57 UTC
  • mfrom: (575.5.1 drizzle)
  • mto: (589.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 586.
  • Revision ID: monty@inaugust.com-20081115175857-kxdeopxzbyyz5bkd
MergedĀ fromĀ David.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
  Item_date() :Item_func() {}
31
31
  Item_date(Item *a) :Item_func(a) {}
32
32
  enum Item_result result_type () const { return STRING_RESULT; }
33
 
  enum_field_types field_type() const { return DRIZZLE_TYPE_NEWDATE; }
 
33
  enum_field_types field_type() const { return DRIZZLE_TYPE_DATE; }
34
34
  String *val_str(String *str);
35
35
  int64_t val_int();
36
36
  double val_real() { return val_real_from_decimal(); }