~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-25 08:50:15 UTC
  • mto: This revision was merged to the branch mainline in revision 1255.
  • Revision ID: mordred@inaugust.com-20091225085015-83sux5qsvy312gew
MEM_ROOT == memory::Root

Show diffs side-by-side

added added

removed removed

Lines of Context:
340
340
  virtual int  recover(XID *, uint32_t) { return 0; }
341
341
  virtual int  commit_by_xid(XID *) { return 0; }
342
342
  virtual int  rollback_by_xid(XID *) { return 0; }
343
 
  virtual Cursor *create(TableShare &, MEM_ROOT *)= 0;
 
343
  virtual Cursor *create(TableShare &, drizzled::memory::Root *)= 0;
344
344
  /* args: path */
345
345
  virtual void drop_database(char*) { }
346
346
  virtual int start_consistent_snapshot(Session *) { return 0; }
435
435
 
436
436
  static void removeLostTemporaryTables(Session &session, const char *directory);
437
437
 
438
 
  Cursor *getCursor(TableShare &share, MEM_ROOT *alloc);
 
438
  Cursor *getCursor(TableShare &share, drizzled::memory::Root *alloc);
439
439
 
440
440
  uint32_t max_record_length() const
441
441
  { return std::min((unsigned int)HA_MAX_REC_LENGTH, max_supported_record_length()); }