~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/microtime.h

  • Committer: Lee Bieber
  • Date: 2011-01-11 04:20:16 UTC
  • mfrom: (2069.2.1 timestamp)
  • Revision ID: kalebral@gmail.com-20110111042016-pf06o1j9q2moea01
Merge Brian - fix bug 700925: inserting into timestamp(6) with now() not preserving microseconds

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
  enum_field_types type() const { return DRIZZLE_TYPE_MICROTIME;}
51
51
  enum ha_base_keytype key_type() const { return HA_KEYTYPE_BINARY; }
52
52
  enum Item_result cmp_type () const { return STRING_RESULT; }
53
 
  int  store(const char *to,uint32_t length,
54
 
             const CHARSET_INFO * const charset);
55
 
  int  store(double nr);
56
 
  int  store(int64_t nr, bool unsigned_val);
 
53
  int store(const char *to,uint32_t length,
 
54
            const CHARSET_INFO * const charset);
 
55
  int store(double nr);
 
56
  int store(int64_t nr, bool unsigned_val);
 
57
  int store_time(type::Time *ltime, enum enum_drizzle_timestamp_type t_type);
 
58
 
57
59
  double val_real(void);
58
60
  int64_t val_int(void);
59
61
  String *val_str(String*,String *);