diff options
author | Keith Bostic <keith@wiredtiger.com> | 2014-11-28 14:09:26 -0500 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2014-11-28 14:09:26 -0500 |
commit | 0d22b561294a8f50bfe914298de6868331dea1fd (patch) | |
tree | c3915f7566228b680e88119eacb4a14883d8151d /src/btree/bt_evict.c | |
parent | 80023e8b3908d91e7629b2845c0b7f70a1fc8991 (diff) | |
download | mongo-0d22b561294a8f50bfe914298de6868331dea1fd.tar.gz |
Rename __wt_rec_evict to __wt_evict, eviction and reconciliation have
been separate for a long time, now.
Diffstat (limited to 'src/btree/bt_evict.c')
-rw-r--r-- | src/btree/bt_evict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/btree/bt_evict.c b/src/btree/bt_evict.c index 91a7885e63f..2d3da44fe28 100644 --- a/src/btree/bt_evict.c +++ b/src/btree/bt_evict.c @@ -615,7 +615,7 @@ __wt_evict_page(WT_SESSION_IMPL *session, WT_REF *ref) WT_ASSERT(session, !F_ISSET(txn, TXN_HAS_ID) || !__wt_txn_visible(session, txn->id)); - ret = __wt_rec_evict(session, ref, 0); + ret = __wt_evict(session, ref, 0); txn->isolation = saved_iso; return (ret); |