~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_delete.cc

  • Committer: David Shrewsbury
  • Date: 2011-01-20 14:08:19 UTC
  • mto: (2109.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2110.
  • Revision ID: shrewsbury.dave@gmail.com-20110120140819-ctwi0etrhsaaumud
Initial change to use references to Session in TransactionServices methods rather than pointers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
422
422
    Safety, in case the engine ignored ha_enable_transaction(false)
423
423
    above. Also clears session->transaction.*.
424
424
  */
425
 
  error= transaction_services.autocommitOrRollback(&session, error);
 
425
  error= transaction_services.autocommitOrRollback(session, error);
426
426
  session.options= save_options;
427
427
 
428
428
  return error;