summaryrefslogtreecommitdiff
path: root/src/mongo/db/index/2d_access_method.cpp
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2014-05-19 16:05:41 -0400
committerEliot Horowitz <eliot@10gen.com>2014-05-19 16:05:41 -0400
commitdb0e1a91fdce2fa43584408a87d637cfe4bcc2ec (patch)
tree8cbefae4f2f43f41f4a512f5b8f250b1662dfbbf /src/mongo/db/index/2d_access_method.cpp
parentf2bfd36a6f3eb7e7e2587268be3cc12636703d42 (diff)
downloadmongo-db0e1a91fdce2fa43584408a87d637cfe4bcc2ec.tar.gz
SERVER-13637: add CollectionCatalogEntry, start Database layer
Diffstat (limited to 'src/mongo/db/index/2d_access_method.cpp')
-rw-r--r--src/mongo/db/index/2d_access_method.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/db/index/2d_access_method.cpp b/src/mongo/db/index/2d_access_method.cpp
index 7a5cbc9ff0b..8823c3a08c9 100644
--- a/src/mongo/db/index/2d_access_method.cpp
+++ b/src/mongo/db/index/2d_access_method.cpp
@@ -41,8 +41,9 @@
namespace mongo {
- TwoDAccessMethod::TwoDAccessMethod(IndexCatalogEntry* btreeState)
- : BtreeBasedAccessMethod(btreeState) {
+ TwoDAccessMethod::TwoDAccessMethod(IndexCatalogEntry* btreeState,
+ RecordStore* rs)
+ : BtreeBasedAccessMethod(btreeState, rs) {
const IndexDescriptor* descriptor = btreeState->descriptor();