summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/query_stage_multiplan.cpp
diff options
context:
space:
mode:
authorAndrii Dobroshynski <andrii.dobroshynski@mongodb.com>2021-06-17 15:24:21 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-06-17 16:44:38 +0000
commit20384afa5899fe742faf719a60f633fee1544d8a (patch)
tree3a844de65c2577cbc9e12139a4d209a945581579 /src/mongo/dbtests/query_stage_multiplan.cpp
parent870f8af7b3052d0e866f3b24c7220fef1f9d66f5 (diff)
downloadmongo-20384afa5899fe742faf719a60f633fee1544d8a.tar.gz
SERVER-57758 Turn SBE off by default and invert the sense of the internalQueryForceClassicEngine flag
Diffstat (limited to 'src/mongo/dbtests/query_stage_multiplan.cpp')
-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 0a89202af53..a0c2532aebd 100644
--- a/src/mongo/dbtests/query_stage_multiplan.cpp
+++ b/src/mongo/dbtests/query_stage_multiplan.cpp
@@ -547,7 +547,8 @@ TEST_F(QueryStageMultiPlanTest, MPSExplainAllPlans) {
//
// This is a regression test for SERVER-20111.
TEST_F(QueryStageMultiPlanTest, MPSSummaryStats) {
- RAIIServerParameterControllerForTest controller("internalQueryForceClassicEngine", true);
+ RAIIServerParameterControllerForTest controller("internalQueryEnableSlotBasedExecutionEngine",
+ false);
const int N = 5000;
for (int i = 0; i < N; ++i) {