diff options
Diffstat (limited to 'src/mongo/db/commands/dbhash.cpp')
-rw-r--r-- | src/mongo/db/commands/dbhash.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/commands/dbhash.cpp b/src/mongo/db/commands/dbhash.cpp index 6ef685dd420..bae3b34eb19 100644 --- a/src/mongo/db/commands/dbhash.cpp +++ b/src/mongo/db/commands/dbhash.cpp @@ -350,7 +350,7 @@ private: std::unique_ptr<PlanExecutor, PlanExecutor::Deleter> exec; if (desc) { exec = InternalPlanner::indexScan(opCtx, - collection, + &collection, desc, BSONObj(), BSONObj(), @@ -360,7 +360,7 @@ private: InternalPlanner::IXSCAN_FETCH); } else if (collection->isCapped()) { exec = InternalPlanner::collectionScan( - opCtx, nss.ns(), collection, PlanYieldPolicy::YieldPolicy::NO_YIELD); + opCtx, nss.ns(), &collection, PlanYieldPolicy::YieldPolicy::NO_YIELD); } else { LOGV2(20455, "Can't find _id index for namespace: {namespace}", |