~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_func.h

  • Committer: Brian Aker
  • Date: 2008-07-31 19:57:34 UTC
  • mfrom: (236.1.27 codestyle)
  • Revision ID: brian@tangent.org-20080731195734-c7cu4gx70xgjr68o
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
144
144
  void count_only_length();
145
145
  void count_real_length();
146
146
  void count_decimal_length();
147
 
  inline bool get_arg0_date(MYSQL_TIME *ltime, uint fuzzy_date)
 
147
  inline bool get_arg0_date(DRIZZLE_TIME *ltime, uint fuzzy_date)
148
148
  {
149
149
    return (null_value=args[0]->get_date(ltime, fuzzy_date));
150
150
  }
151
 
  inline bool get_arg0_time(MYSQL_TIME *ltime)
 
151
  inline bool get_arg0_time(DRIZZLE_TIME *ltime)
152
152
  {
153
153
    return (null_value=args[0]->get_time(ltime));
154
154
  }