Skip to content

Commit

Permalink
WT-2019 Fix a logic bug tracking the maximum transaction ID in clean …
Browse files Browse the repository at this point in the history
…tree.
  • Loading branch information
michaelcahill committed Jul 23, 2015
1 parent c8633e6 commit ddd7d4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reconcile/rec_write.c
Expand Up @@ -5108,7 +5108,7 @@ err: __wt_scr_free(session, &tkey);
*/
mod->rec_max_txn = r->max_txn;
if (!F_ISSET(r, WT_EVICTING) &&
!WT_TXNID_LT(btree->rec_max_txn, r->max_txn))
WT_TXNID_LT(btree->rec_max_txn, r->max_txn))
btree->rec_max_txn = r->max_txn;

/*
Expand Down

0 comments on commit ddd7d4a

Please sign in to comment.