~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/xid.cc

  • Committer: Lee Bieber
  • Date: 2011-04-14 02:58:23 UTC
  • mfrom: (2275.2.5 typelib)
  • mto: This revision was merged to the branch mainline in revision 2278.
  • Revision ID: kalebral@gmail.com-20110414025823-vz32sg8fuxslygyd
Merge Olaf - remove unused functions

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
    gtrid_length+bqual_length;
99
99
}
100
100
 
101
 
const unsigned char *XID::key() const
102
 
{
103
 
  return (unsigned char *)&gtrid_length;
104
 
}
105
 
 
106
 
uint32_t XID::key_length() const
107
 
{
108
 
  return sizeof(gtrid_length)+sizeof(bqual_length)+gtrid_length+bqual_length;
109
 
}
110
 
 
111
101
} /* namespace drizzled */