summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/sbe_plan_cache_key_reporting.js
diff options
context:
space:
mode:
authorDan Larkin-York <dan.larkin-york@mongodb.com>2023-02-03 23:42:29 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-02-04 01:32:37 +0000
commit94098eff431d7bb65da31516cc4df2a895d27dd8 (patch)
tree1aa862702400ebbf57026aa94e766b8d88b9e143 /jstests/noPassthrough/sbe_plan_cache_key_reporting.js
parent946646ef8d624116985f3acca5ec5ae359d59097 (diff)
downloadmongo-94098eff431d7bb65da31516cc4df2a895d27dd8.tar.gz
Revert "SERVER-71798 Expand the set of queries eligible for SBE in the 6.3 release"
Diffstat (limited to 'jstests/noPassthrough/sbe_plan_cache_key_reporting.js')
-rw-r--r--jstests/noPassthrough/sbe_plan_cache_key_reporting.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/noPassthrough/sbe_plan_cache_key_reporting.js b/jstests/noPassthrough/sbe_plan_cache_key_reporting.js
index 0cf0546a6bd..e603c495d0e 100644
--- a/jstests/noPassthrough/sbe_plan_cache_key_reporting.js
+++ b/jstests/noPassthrough/sbe_plan_cache_key_reporting.js
@@ -20,8 +20,8 @@ assert.neq(conn, null, "mongod failed to start");
const db = conn.getDB("plan_cache_key_reporting");
const coll = db.coll;
-if (!checkSBEEnabled(db)) {
- jsTest.log("Skipping test because SBE is not enabled");
+if (!checkSBEEnabled(db, ["featureFlagSbeFull"])) {
+ jsTest.log("Skipping test because SBE is not fully enabled");
MongoRunner.stopMongod(conn);
return;
}