~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/xid.h

  • Committer: Mark Atwood
  • Date: 2011-05-04 15:58:17 UTC
  • mfrom: (2281.4.14 prune)
  • Revision ID: me@mark.atwood.name-20110504155817-c5w3ak4w6olexmt2
mergeĀ lp:~olafvdspek/drizzle/prune

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
/**