summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/explain_group_stage_exec_stats.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthrough/explain_group_stage_exec_stats.js')
-rw-r--r--jstests/noPassthrough/explain_group_stage_exec_stats.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/noPassthrough/explain_group_stage_exec_stats.js b/jstests/noPassthrough/explain_group_stage_exec_stats.js
index 2a171485424..a1cef128ace 100644
--- a/jstests/noPassthrough/explain_group_stage_exec_stats.js
+++ b/jstests/noPassthrough/explain_group_stage_exec_stats.js
@@ -13,7 +13,7 @@ const testDB = conn.getDB('test');
const coll = testDB.explain_group_stage_exec_stats;
coll.drop();
-if (checkSBEEnabled(testDB, ["featureFlagSBEGroupPushdown"])) {
+if (checkSBEEnabled(testDB)) {
// When the SBE $group pushdown feature is enabled, a $group alone is pushed down and the
// memory usage tracking isn't on a per-accumulator basis so this test is exercising
// spilling behavior of the classic DocumentSourceGroup stage.