~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.cc

Merge Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
848
848
    options|= OPTION_BEGIN;
849
849
    server_status|= SERVER_STATUS_IN_TRANS;
850
850
 
851
 
    if (opt == START_TRANS_OPT_WITH_CONS_SNAPSHOT)
 
851
    if (plugin::TransactionalStorageEngine::notifyStartTransaction(this, opt))
852
852
    {
853
 
      if (plugin::TransactionalStorageEngine::startConsistentSnapshot(this))
854
 
      {
855
 
        result= false;
856
 
      }
 
853
      result= false;
857
854
    }
858
855
  }
859
856