summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/plan_explainer_factory.cpp
diff options
context:
space:
mode:
authorMaddie Zechar <mez2113@columbia.edu>2023-01-23 18:58:05 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-01-23 21:03:27 +0000
commit2091bc8a02bc884e8df85fb02f706aac18b6278e (patch)
treedf16439e69ad6730b4208c22d4a89555ea98e374 /src/mongo/db/query/plan_explainer_factory.cpp
parentdc6bdd52af8ea92f8ddd31b8b4849ff93399f3c9 (diff)
downloadmongo-2091bc8a02bc884e8df85fb02f706aac18b6278e.tar.gz
SERVER-71484 Store telemetry key on OpDebug
Diffstat (limited to 'src/mongo/db/query/plan_explainer_factory.cpp')
-rw-r--r--src/mongo/db/query/plan_explainer_factory.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mongo/db/query/plan_explainer_factory.cpp b/src/mongo/db/query/plan_explainer_factory.cpp
index 5cd738850ce..c4aaaef701f 100644
--- a/src/mongo/db/query/plan_explainer_factory.cpp
+++ b/src/mongo/db/query/plan_explainer_factory.cpp
@@ -42,9 +42,6 @@ std::unique_ptr<PlanExplainer> make(PlanStage* root) {
return std::make_unique<PlanExplainerImpl>(root);
}
-std::unique_ptr<PlanExplainer> make(PlanStage* root, BSONObj telemetryKey) {
- return std::make_unique<PlanExplainerImpl>(root, telemetryKey);
-}
std::unique_ptr<PlanExplainer> make(PlanStage* root, const PlanEnumeratorExplainInfo& explainInfo) {
return std::make_unique<PlanExplainerImpl>(root, explainInfo);
}
@@ -72,7 +69,6 @@ std::unique_ptr<PlanExplainer> make(sbe::PlanStage* root,
std::move(rejectedCandidates),
isMultiPlan,
false, /* isFromPlanCache */
- BSONObj(),
debugInfoSBE);
}
@@ -84,7 +80,6 @@ std::unique_ptr<PlanExplainer> make(
std::vector<sbe::plan_ranker::CandidatePlan> rejectedCandidates,
bool isMultiPlan,
bool isFromPlanCache,
- BSONObj telemetryKey,
std::shared_ptr<const plan_cache_debug_info::DebugInfoSBE> debugInfoSBE) {
// TODO SERVER-64882: Consider invariant(debugInfoSBE) as we may not need to create a
// DebugInfoSBE from QuerySolution after the feature flag is removed. We currently need it
@@ -101,7 +96,6 @@ std::unique_ptr<PlanExplainer> make(
std::move(rejectedCandidates),
isMultiPlan,
isFromPlanCache,
- telemetryKey,
debugInfoSBE);
}
} // namespace mongo::plan_explainer_factory