~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Monty Taylor
  • Date: 2009-12-08 22:24:26 UTC
  • mto: (1241.9.9 out-of-tree)
  • mto: This revision was merged to the branch mainline in revision 1250.
  • Revision ID: mordred@inaugust.com-20091208222426-rtv7e9vrvw5g8h1s
Removed some casts- also removed a few c-interface functions and made them actual methods on session. Also made the ha_data private. (fancy that)

Show diffs side-by-side

added added

removed removed

Lines of Context:
249
249
  uint32_t slot;
250
250
 
251
251
  inline uint32_t getSlot (void) { return slot; }
 
252
  inline uint32_t getSlot (void) const { return slot; }
252
253
  inline void setSlot (uint32_t value) { slot= value; }
253
254
 
254
255
  bool has_2pc()