summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/stagedebug_cmd.cpp
diff options
context:
space:
mode:
authorIan Boros <ian.boros@mongodb.com>2020-03-03 15:26:40 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-04-13 21:11:41 +0000
commit5388b23cb85e84eb4ce5a2c03b250e62ff89ea1f (patch)
tree5f607e0c9b5e8bd333ffdfc600abfbea5e99b32b /src/mongo/db/exec/stagedebug_cmd.cpp
parentc58d35e8b8cd53875a4296e5e70070e2667194d9 (diff)
downloadmongo-5388b23cb85e84eb4ce5a2c03b250e62ff89ea1f.tar.gz
SERVER-46921 make collection of timing info opt in in PlanStage
Diffstat (limited to 'src/mongo/db/exec/stagedebug_cmd.cpp')
-rw-r--r--src/mongo/db/exec/stagedebug_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/stagedebug_cmd.cpp b/src/mongo/db/exec/stagedebug_cmd.cpp
index 7baabe4a011..13489617671 100644
--- a/src/mongo/db/exec/stagedebug_cmd.cpp
+++ b/src/mongo/db/exec/stagedebug_cmd.cpp
@@ -183,7 +183,7 @@ public:
expCtx.get(), ws.get(), std::move(userRoot), nullptr, collection);
auto statusWithPlanExecutor = PlanExecutor::make(
- opCtx, std::move(ws), std::move(rootFetch), collection, PlanExecutor::YIELD_AUTO);
+ expCtx, std::move(ws), std::move(rootFetch), collection, PlanExecutor::YIELD_AUTO);
fassert(28536, statusWithPlanExecutor.getStatus());
auto exec = std::move(statusWithPlanExecutor.getValue());