~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/microtime.h

  • Committer: Brian Aker
  • Date: 2011-01-25 07:22:15 UTC
  • mfrom: (2109.1.7 drizzle-build)
  • Revision ID: brian@tangent.org-20110125072215-567z6uzy5vdvn4va
Merge in build/timestamp patches/fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
            const CHARSET_INFO * const charset);
55
55
  int store(double nr);
56
56
  int store(int64_t nr, bool unsigned_val);
57
 
  int store_time(type::Time *ltime, type::timestamp_t t_type);
 
57
  int store_time(type::Time &ltime, type::timestamp_t t_type);
58
58
 
59
59
  String *val_str(String*,String *);
60
60
  double val_real(void);
73
73
  long get_timestamp(bool *null_value);
74
74
 
75
75
private:
76
 
  bool get_date(type::Time *ltime,uint32_t fuzzydate);
77
 
  bool get_time(type::Time *ltime);
 
76
  bool get_date(type::Time &ltime,uint32_t fuzzydate);
 
77
  bool get_time(type::Time &ltime);
78
78
 
79
79
public:
80
80
  static size_t max_string_length()