summaryrefslogtreecommitdiff
path: root/src/mongo/db/index/haystack_access_method.h
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/haystack_access_method.h
parent527ee3561d90aad6a66c7c656d2950eef6f1331b (diff)
downloadmongo-98a0c6f7c2a91d28a1f48c8fb0805e6745f0e8f9.tar.gz
SERVER-13635 IndexAccessMethods now take a BtreeInterface rather than a RecordStore
Diffstat (limited to 'src/mongo/db/index/haystack_access_method.h')
-rw-r--r--src/mongo/db/index/haystack_access_method.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/index/haystack_access_method.h b/src/mongo/db/index/haystack_access_method.h
index e1a4fe9e7df..5ce9d787450 100644
--- a/src/mongo/db/index/haystack_access_method.h
+++ b/src/mongo/db/index/haystack_access_method.h
@@ -57,7 +57,7 @@ namespace mongo {
public:
using BtreeBasedAccessMethod::_descriptor;
- HaystackAccessMethod(IndexCatalogEntry* btreeState, RecordStore* rs);
+ HaystackAccessMethod(IndexCatalogEntry* btreeState, BtreeInterface* btree);
virtual ~HaystackAccessMethod() { }
protected: