~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/transactional_storage_engine.h

  • Committer: Lee Bieber
  • Date: 2011-01-25 02:10:42 UTC
  • mfrom: (2109.1.4 build)
  • Revision ID: kalebral@gmail.com-20110125021042-ocqa0v509ae7fmtz
Need to add a "drop table a" in execute.wait test
Add execute test suite to regular test run
Merge Lee - fix second part of 705699, check for both client and server before building and testing rabbitmq plugin
Merge Shrews - Changes TransactionServices methods to use references to Session objects instead of pointers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
  virtual int startTransaction(Session *session, start_transaction_option_t options)
69
69
  {
70
70
    TransactionServices &transaction_services= TransactionServices::singleton();
71
 
    transaction_services.registerResourceForTransaction(session, this, this);
 
71
    transaction_services.registerResourceForTransaction(*session, this, this);
72
72
    return doStartTransaction(session, options);
73
73
  }
74
74
 
75
75
  virtual void startStatement(Session *session)
76
76
  {
77
77
    TransactionServices &transaction_services= TransactionServices::singleton();
78
 
    transaction_services.registerResourceForStatement(session, this, this);
 
78
    transaction_services.registerResourceForStatement(*session, this, this);
79
79
    doStartStatement(session);
80
80
  }
81
81