summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/agg_lookup.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/concurrency/fsm_workloads/agg_lookup.js')
-rw-r--r--jstests/concurrency/fsm_workloads/agg_lookup.js11
1 files changed, 3 insertions, 8 deletions
diff --git a/jstests/concurrency/fsm_workloads/agg_lookup.js b/jstests/concurrency/fsm_workloads/agg_lookup.js
index 9395c503d3c..2b78703b96c 100644
--- a/jstests/concurrency/fsm_workloads/agg_lookup.js
+++ b/jstests/concurrency/fsm_workloads/agg_lookup.js
@@ -70,12 +70,8 @@ var $config = (function() {
function setup(db, collName, cluster) {
// Do not run the rest of the tests if the foreign collection is implicitly sharded but the
// flag to allow $lookup into a sharded collection is disabled.
- const getParam = db.adminCommand({
- getParameter: 1,
- featureFlagShardedLookup: 1,
- featureFlagSBELookupPushdown: 1,
- internalQueryForceClassicEngine: 1
- });
+ const getParam = db.adminCommand(
+ {getParameter: 1, featureFlagShardedLookup: 1, internalQueryForceClassicEngine: 1});
const isShardedLookupEnabled = getParam.hasOwnProperty("featureFlagShardedLookup") &&
getParam.featureFlagShardedLookup.value;
if (FixtureHelpers.isSharded(db[collName]) && !isShardedLookupEnabled) {
@@ -96,9 +92,8 @@ var $config = (function() {
assertWhenOwnColl.eq(this.numDocs, res.nInserted);
assertWhenOwnColl.eq(this.numDocs, db[collName].find().itcount());
- const isLookupPushdownEnabled = getParam.hasOwnProperty("featureFlagSBELookupPushdown") &&
+ const isLookupPushdownEnabled =
getParam.hasOwnProperty("internalQueryForceClassicEngine") &&
- getParam.featureFlagSBELookupPushdown.value &&
!getParam.internalQueryForceClassicEngine.value;
this.allowDiskUse = true;