~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.h

  • Committer: Brian Aker
  • Date: 2011-01-05 17:21:13 UTC
  • mto: (2057.2.1 clean)
  • mto: This revision was merged to the branch mainline in revision 2064.
  • Revision ID: brian@tangent.org-20110105172113-s7mng3puod6o9n3y
Add basic tests for microtime.

Show diffs side-by-side

added added

removed removed

Lines of Context:
755
755
protected:
756
756
 
757
757
  void pack_num(uint64_t arg, unsigned char *destination= NULL);
 
758
  void pack_num(uint32_t arg, unsigned char *destination= NULL);
758
759
  uint64_t unpack_num(uint64_t &destination, const unsigned char *arg= NULL) const;
 
760
  uint32_t unpack_num(uint32_t &destination, const unsigned char *arg= NULL) const;
759
761
};
760
762
 
761
763
std::ostream& operator<<(std::ostream& output, const Field &field);