~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Brian Aker
  • Date: 2009-11-12 16:13:04 UTC
  • mfrom: (1211.1.7 staging)
  • Revision ID: brian@gaz-20091112161304-opamiauv36fg0n6u
Rollup of Brian, Padraig, and Stewart patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
267
267
  virtual int  recover(XID *, uint32_t) { return 0; }
268
268
  virtual int  commit_by_xid(XID *) { return 0; }
269
269
  virtual int  rollback_by_xid(XID *) { return 0; }
270
 
  virtual Cursor *create(TableShare *, MEM_ROOT *)= 0;
 
270
  virtual Cursor *create(TableShare &, MEM_ROOT *)= 0;
271
271
  /* args: path */
272
272
  virtual void drop_database(char*) { }
273
273
  virtual int start_consistent_snapshot(Session *) { return 0; }
359
359
                         drizzled::message::Table& table_proto,
360
360
                         bool used= true);
361
361
 
362
 
  Cursor *getCursor(TableShare *share, MEM_ROOT *alloc);
 
362
  Cursor *getCursor(TableShare &share, MEM_ROOT *alloc);
363
363
};
364
364
 
365
365
} /* namespace plugin */