~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2009-01-25 02:52:05 UTC
  • mfrom: (801.1.4 testable)
  • Revision ID: brian@gir.tangent.org-20090125025205-zlahg6u6z0w95v64
Merge from Myself

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
  Item_func_from_days(Item *a) :Item_date(a) {}
29
29
  const char *func_name() const { return "from_days"; }
30
30
  bool get_date(DRIZZLE_TIME *res, uint32_t fuzzy_date);
31
 
  bool check_vcol_func_processor(unsigned char *int_arg __attribute__((unused)))
 
31
  bool check_vcol_func_processor(unsigned char *)
32
32
  { return false; }
33
33
};
34
34