summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/plan_explainer_impl.cpp
diff options
context:
space:
mode:
authorEric Cox <eric.cox@mongodb.com>2021-07-21 19:03:16 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-07-31 01:41:48 +0000
commit07d6e82a05dbe36f94d6a32b9378b0ddabdc8045 (patch)
tree8d9666532e2a1f37805c81a87b758c21fe4d3c57 /src/mongo/db/query/plan_explainer_impl.cpp
parent63e3eaa766bf2aea4fad1333e69d7c8d52e612e8 (diff)
downloadmongo-07d6e82a05dbe36f94d6a32b9378b0ddabdc8045.tar.gz
SERVER-57461 Remove SPLIT_LIMITED_SORT and associated QueryPlanner code
Diffstat (limited to 'src/mongo/db/query/plan_explainer_impl.cpp')
-rw-r--r--src/mongo/db/query/plan_explainer_impl.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mongo/db/query/plan_explainer_impl.cpp b/src/mongo/db/query/plan_explainer_impl.cpp
index 2bbb1ff7726..e832698de78 100644
--- a/src/mongo/db/query/plan_explainer_impl.cpp
+++ b/src/mongo/db/query/plan_explainer_impl.cpp
@@ -332,12 +332,6 @@ void statsToBSON(const PlanStageStats& stats,
if (verbosity >= ExplainOptions::Verbosity::kExecStats) {
bob->appendNumber("keysExamined", static_cast<long long>(spec->keysExamined));
}
- } else if (STAGE_ENSURE_SORTED == stats.stageType) {
- EnsureSortedStats* spec = static_cast<EnsureSortedStats*>(stats.specific.get());
-
- if (verbosity >= ExplainOptions::Verbosity::kExecStats) {
- bob->appendNumber("nDropped", spec->nDropped);
- }
} else if (STAGE_FETCH == stats.stageType) {
FetchStats* spec = static_cast<FetchStats*>(stats.specific.get());
if (verbosity >= ExplainOptions::Verbosity::kExecStats) {