summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests
diff options
context:
space:
mode:
authorNicholas Zolnierz <nicholas.zolnierz@mongodb.com>2022-08-04 14:48:15 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-08-04 15:39:07 +0000
commitcdd2775640387ff7ec9e20dd7d24295216ace664 (patch)
treeef2e7347aa92be9e2116984c575ef9ea6a7b9ee1 /src/mongo/dbtests
parent112d3349db7bb2bc1bb7f6a6cdd7dd1d89f3f423 (diff)
downloadmongo-cdd2775640387ff7ec9e20dd7d24295216ace664.tar.gz
SERVER-62042 Consolidate query optimization and execution control into a single knob
Diffstat (limited to 'src/mongo/dbtests')
-rw-r--r--src/mongo/dbtests/query_stage_multiplan.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/dbtests/query_stage_multiplan.cpp b/src/mongo/dbtests/query_stage_multiplan.cpp
index 984ecb861a8..5d5da5d8aa2 100644
--- a/src/mongo/dbtests/query_stage_multiplan.cpp
+++ b/src/mongo/dbtests/query_stage_multiplan.cpp
@@ -551,7 +551,8 @@ TEST_F(QueryStageMultiPlanTest, MPSExplainAllPlans) {
//
// This is a regression test for SERVER-20111.
TEST_F(QueryStageMultiPlanTest, MPSSummaryStats) {
- RAIIServerParameterControllerForTest controller("internalQueryForceClassicEngine", true);
+ RAIIServerParameterControllerForTest controller("internalQueryFrameworkControl",
+ "forceClassicEngine");
const int N = 5000;
for (int i = 0; i < N; ++i) {