diff options
Diffstat (limited to 'jstests/noPassthrough/plan_cache_stats_agg_source.js')
-rw-r--r-- | jstests/noPassthrough/plan_cache_stats_agg_source.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/jstests/noPassthrough/plan_cache_stats_agg_source.js b/jstests/noPassthrough/plan_cache_stats_agg_source.js index 01bbf6a75a0..9c2777e1f04 100644 --- a/jstests/noPassthrough/plan_cache_stats_agg_source.js +++ b/jstests/noPassthrough/plan_cache_stats_agg_source.js @@ -16,11 +16,7 @@ assert.neq(null, conn, "mongod failed to start up"); const testDb = conn.getDB("test"); const coll = testDb.plan_cache_stats_agg_source; - -// Note that the "getParameter" command is expected to fail in versions of mongod that do not yet -// include the slot-based execution engine. When that happens, however, 'isSBEEnabled' still -// correctly evaluates to false. -const isSBEEnabled = checkSBEEnabled(testDb, ["featureFlagSbeFull"]); +const isSBEEnabled = checkSBEEnabled(testDb); function makeMatchForFilteringByShape(query) { const keyHash = getPlanCacheKeyFromShape({query: query, collection: coll, db: testDb}); |