~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/microtime.h

  • Committer: Brian Aker
  • Date: 2011-01-19 18:03:32 UTC
  • mfrom: (2088.8.12 timestamp)
  • mto: This revision was merged to the branch mainline in revision 2098.
  • Revision ID: brian@tangent.org-20110119180332-acfk5i8oofp63s40
Merge in time code.

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, enum enum_drizzle_timestamp_type t_type);
 
57
  int store_time(type::Time *ltime, type::timestamp_t t_type);
58
58
 
 
59
  String *val_str(String*,String *);
59
60
  double val_real(void);
60
61
  int64_t val_int(void);
61
 
  String *val_str(String*,String *);
 
62
  type::Decimal *val_decimal(type::Decimal *decimal_value);
 
63
 
62
64
  int cmp(const unsigned char *,const unsigned char *);
63
65
  void sort_string(unsigned char *buff,uint32_t length);
64
66
  uint32_t pack_length() const { return 12; }