~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/date.h

  • Committer: Monty Taylor
  • Date: 2010-12-26 01:32:11 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101226013211-c1tx52h7evovmijg
fixed dict and eval.

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
             const CHARSET_INFO * const charset);
65
65
  int  store(double nr);
66
66
  int  store(int64_t nr, bool unsigned_val);
67
 
  int store_time(type::Time &ltime, type::timestamp_t type);
 
67
  int store_time(DRIZZLE_TIME *ltime, enum enum_drizzle_timestamp_type type);
68
68
  int reset(void) { ptr[0]=ptr[1]=ptr[2]=ptr[3]=0; return 0; }
69
69
  double val_real(void);
70
70
  int64_t val_int(void);
75
75
  void sql_type(String &str) const;
76
76
  bool can_be_compared_as_int64_t() const { return true; }
77
77
  bool zero_pack() const { return 1; }
78
 
  bool get_date(type::Time &ltime,uint32_t fuzzydate);
79
 
  bool get_time(type::Time &ltime);
 
78
  bool get_date(DRIZZLE_TIME *ltime,uint32_t fuzzydate);
 
79
  bool get_time(DRIZZLE_TIME *ltime);
80
80
};
81
81
 
82
82
} /* namespace drizzled */