summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/index_scan.h
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2013-10-25 10:32:31 -0400
committerEliot Horowitz <eliot@10gen.com>2013-10-25 12:52:52 -0400
commit715e6a89e1db69d695588962dc5c9d35c699d1e8 (patch)
treeac33e9c129e13b4b51f426f64833eb60d6679bf6 /src/mongo/db/exec/index_scan.h
parent5e58c72061b11949db2d15254af99a9c34b242ce (diff)
downloadmongo-715e6a89e1db69d695588962dc5c9d35c699d1e8.tar.gz
SERVER-11178: move more CatalogHack calls to IndexCatalog
Diffstat (limited to 'src/mongo/db/exec/index_scan.h')
-rw-r--r--src/mongo/db/exec/index_scan.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/index_scan.h b/src/mongo/db/exec/index_scan.h
index ca6f26d70b2..891a97c6149 100644
--- a/src/mongo/db/exec/index_scan.h
+++ b/src/mongo/db/exec/index_scan.h
@@ -92,9 +92,9 @@ namespace mongo {
WorkingSet* _workingSet;
// Index access.
- scoped_ptr<IndexAccessMethod> _iam;
+ IndexAccessMethod* _iam; // owned by Collection -> IndexCatalog
scoped_ptr<IndexCursor> _indexCursor;
- scoped_ptr<IndexDescriptor> _descriptor;
+ IndexDescriptor* _descriptor; // owned by Collection -> IndexCatalog
// Have we hit the end of the index scan?
bool _hitEnd;