~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

« back to all changes in this revision

Viewing changes to drizzled/xid.h

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

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
 
  bool is_null();
66
 
  void null();
 
61
  bool is_null() const;
 
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
/**