~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/trx/trx0roll.c

  • Committer: Brian Aker
  • Date: 2010-12-08 22:35:56 UTC
  • mfrom: (1819.9.158 update-innobase)
  • Revision ID: brian@tangent.org-20101208223556-37mi4omqg7lkjzf3
Merge in Stewart's changes, 1.3 changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
743
743
        undo_no_t       undo_no)/*!< in: undo number */
744
744
{
745
745
        trx_undo_inf_t* cell;
746
 
        ulint           n_used;
747
 
        ulint           n;
748
746
        ulint           i;
749
747
 
750
 
        n_used = arr->n_used;
751
 
        n = 0;
752
 
 
753
748
        for (i = 0;; i++) {
754
749
                cell = trx_undo_arr_get_nth_info(arr, i);
755
750