diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2012-09-18 18:04:08 +1000 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2012-09-18 18:04:08 +1000 |
commit | ce2487d891d35e65115768321ee27e640e34c6ab (patch) | |
tree | 6ca626ef925dcd0b545f15c47ab2c7b9d60ded07 /src/btree/col_srch.c | |
parent | 53674ecce0303ec222d3a371372631b666e67f37 (diff) | |
download | mongo-ce2487d891d35e65115768321ee27e640e34c6ab.tar.gz |
Replace session->btree with a data handle.
Diffstat (limited to 'src/btree/col_srch.c')
-rw-r--r-- | src/btree/col_srch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/btree/col_srch.c b/src/btree/col_srch.c index 0e6044ac5c7..bf2a9ee7030 100644 --- a/src/btree/col_srch.c +++ b/src/btree/col_srch.c @@ -28,7 +28,7 @@ __wt_col_search(WT_SESSION_IMPL *session, WT_CURSOR_BTREE *cbt, int is_modify) recno = cbt->iface.recno; - btree = session->btree; + btree = S2BT(session); ref = NULL; /* Search the internal pages of the tree. */ |