~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

Automates registration of statement transaction resources.  No more need for storage engines to call TransactionServices::trans_register_ha(session, false, engine).  yeah \o/

Show diffs side-by-side

added added

removed removed

Lines of Context:
256
256
 
257
257
  // @todo match check_flag interface
258
258
  virtual uint32_t index_flags(enum  ha_key_alg) const { return 0; }
259
 
  void startStatement(Session *session)
 
259
  virtual void startStatement(Session *session)
260
260
  {
261
261
    doStartStatement(session);
262
262
  }
263
 
  void endStatement(Session *session)
 
263
  virtual void endStatement(Session *session)
264
264
  {
265
265
    doEndStatement(session);
266
266
  }