~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/xid.h

  • Committer: Olaf van der Spek
  • Date: 2011-04-19 16:22:44 UTC
  • mto: This revision was merged to the branch mainline in revision 2301.
  • Revision ID: olafvdspek@gmail.com-20110419162244-t3xugf3stl6pwh80
XID

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
  {
57
57
    memset(data, 0, DRIZZLE_XIDDATASIZE);
58
58
  }
59
 
  bool eq(XID *xid);
60
 
  bool eq(long g, long b, const char *d);
61
 
  void set(XID *xid);
62
 
  void set(long f, const char *g, long gl, const char *b, long bl);
63
59
  void set(uint64_t xid);
64
60
  void set(long g, long b, const char *d);
65
61
  bool is_null();
66
 
  void null();
 
62
  void set_null();
67
63
  my_xid quick_get_my_xid();
68
64
  my_xid get_my_xid();
69
65
  uint32_t length() const;
70
 
  const unsigned char* key() const;
71
 
  uint32_t key_length() const;
72
66
};
73
67
 
74
68
/**