~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/date.h

  • Committer: Brian Aker
  • Date: 2011-01-25 00:16:39 UTC
  • mto: (2109.1.6 drizzle-build)
  • mto: This revision was merged to the branch mainline in revision 2112.
  • Revision ID: brian@tangent.org-20110125001639-lezc0b7obhbutj5l
Fix store_time to take reference.

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(type::Time &ltime, type::timestamp_t 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);