~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_delete.cc

  • Committer: Olaf van der Spek
  • Date: 2011-06-23 10:47:03 UTC
  • mto: This revision was merged to the branch mainline in revision 2348.
  • Revision ID: olafvdspek@gmail.com-20110623104703-hw93svu0vfgcqt9p
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
403
403
    Safety, in case the engine ignored ha_enable_transaction(false)
404
404
    above. Also clears session->transaction.*.
405
405
  */
406
 
  error= TransactionServices::singleton().autocommitOrRollback(session, error);
 
406
  error= TransactionServices::autocommitOrRollback(session, error);
407
407
  session.options= save_options;
408
408
  return error;
409
409
}