~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/trx/trx0rseg.cc

  • Committer: Andrew Hutchings
  • Date: 2011-02-01 10:23:22 UTC
  • mto: (2136.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2137.
  • Revision ID: andrew@linuxjedi.co.uk-20110201102322-oxztcyrjzg3c7yta
Fix counters cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
140
140
 
141
141
        mutex_free(&rseg->mutex);
142
142
 
143
 
        if (! srv_apply_log_only) {
144
143
        /* There can't be any active transactions. */
145
144
        ut_a(UT_LIST_GET_LEN(rseg->update_undo_list) == 0);
146
145
        ut_a(UT_LIST_GET_LEN(rseg->insert_undo_list) == 0);
147
 
        }
148
146
 
149
147
        undo = UT_LIST_GET_FIRST(rseg->update_undo_cached);
150
148