summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/explain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/query/explain.cpp')
-rw-r--r--src/mongo/db/query/explain.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mongo/db/query/explain.cpp b/src/mongo/db/query/explain.cpp
index 977b7fdb1a1..f39f959b545 100644
--- a/src/mongo/db/query/explain.cpp
+++ b/src/mongo/db/query/explain.cpp
@@ -882,9 +882,10 @@ void Explain::explainStages(PlanExecutor* exec,
if (verbosity >= ExplainOptions::Verbosity::kExecStats) {
executePlanStatus = exec->executePlan();
- // If executing the query failed because it was killed, then the collection may no longer be
- // valid. We indicate this by setting our collection pointer to null.
- if (executePlanStatus == ErrorCodes::QueryPlanKilled) {
+ // If executing the query failed, for any number of reasons other than a planning failure,
+ // then the collection may no longer be valid. We conservatively set our collection pointer
+ // to null in case it is invalid.
+ if (executePlanStatus != ErrorCodes::NoQueryExecutionPlans) {
collection = nullptr;
}
}