summaryrefslogtreecommitdiff
path: root/src/mongo/db/index/hash_access_method.cpp
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2014-06-19 13:38:24 -0400
committerMathias Stearn <mathias@10gen.com>2014-06-19 19:35:15 -0400
commit98a0c6f7c2a91d28a1f48c8fb0805e6745f0e8f9 (patch)
tree1570eec49263742ff2d7219fffb8f4610b3e0d16 /src/mongo/db/index/hash_access_method.cpp
parent527ee3561d90aad6a66c7c656d2950eef6f1331b (diff)
downloadmongo-98a0c6f7c2a91d28a1f48c8fb0805e6745f0e8f9.tar.gz
SERVER-13635 IndexAccessMethods now take a BtreeInterface rather than a RecordStore
Diffstat (limited to 'src/mongo/db/index/hash_access_method.cpp')
-rw-r--r--src/mongo/db/index/hash_access_method.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/index/hash_access_method.cpp b/src/mongo/db/index/hash_access_method.cpp
index bb3684c020a..173aaa91838 100644
--- a/src/mongo/db/index/hash_access_method.cpp
+++ b/src/mongo/db/index/hash_access_method.cpp
@@ -33,8 +33,8 @@
namespace mongo {
- HashAccessMethod::HashAccessMethod(IndexCatalogEntry* btreeState, RecordStore* rs)
- : BtreeBasedAccessMethod(btreeState, rs) {
+ HashAccessMethod::HashAccessMethod(IndexCatalogEntry* btreeState, BtreeInterface* btree)
+ : BtreeBasedAccessMethod(btreeState, btree) {
const IndexDescriptor* descriptor = btreeState->descriptor();