summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/sbe_plan_cache_memory_debug_info.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthrough/sbe_plan_cache_memory_debug_info.js')
-rw-r--r--jstests/noPassthrough/sbe_plan_cache_memory_debug_info.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/jstests/noPassthrough/sbe_plan_cache_memory_debug_info.js b/jstests/noPassthrough/sbe_plan_cache_memory_debug_info.js
index df3ac0d3fd9..9c8f6fb5461 100644
--- a/jstests/noPassthrough/sbe_plan_cache_memory_debug_info.js
+++ b/jstests/noPassthrough/sbe_plan_cache_memory_debug_info.js
@@ -75,7 +75,8 @@ const planCacheSizeAfterSbeStep = getPlanCacheSize();
assert.lt(initialPlanCacheSize, planCacheSizeAfterSbeStep);
// Force classic plan cache.
-assert.commandWorked(db.adminCommand({setParameter: 1, internalQueryForceClassicEngine: true}));
+assert.commandWorked(
+ db.adminCommand({setParameter: 1, internalQueryEnableSlotBasedExecutionEngine: false}));
// Create a new collection for classic queries so we can easily assess its plan cache.
const classicColl = createTestCollection("classic");