summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/spill_to_disk_secondary_read.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthrough/spill_to_disk_secondary_read.js')
-rw-r--r--jstests/noPassthrough/spill_to_disk_secondary_read.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/noPassthrough/spill_to_disk_secondary_read.js b/jstests/noPassthrough/spill_to_disk_secondary_read.js
index f4c2ef20104..242620b987b 100644
--- a/jstests/noPassthrough/spill_to_disk_secondary_read.js
+++ b/jstests/noPassthrough/spill_to_disk_secondary_read.js
@@ -35,7 +35,7 @@ const readColl = secondary.getDB("test").foo;
* Test spilling of $group, when explicitly run on a secondary.
*/
(function testGroupSpilling() {
- if (!checkSBEEnabled(secondary.getDB("test"), ["featureFlagSBEGroupPushdown"])) {
+ if (!checkSBEEnabled(secondary.getDB("test"))) {
jsTestLog("Skipping test for HashAgg stage: $group lowering into SBE isn't enabled");
return;
}
@@ -100,7 +100,7 @@ const readColl = secondary.getDB("test").foo;
* Test spilling of $lookup when explicitly run on a secondary.
*/
(function testLookupSpillingInSbe() {
- if (!checkSBEEnabled(secondary.getDB("test"), ["featureFlagSBELookupPushdown"])) {
+ if (!checkSBEEnabled(secondary.getDB("test"))) {
jsTestLog("Skipping test for HashLookup stage: $lookup lowering into SBE isn't enabled");
return;
}