summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/explain_reports_correct_trial_period_statistics.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthrough/explain_reports_correct_trial_period_statistics.js')
-rw-r--r--jstests/noPassthrough/explain_reports_correct_trial_period_statistics.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/jstests/noPassthrough/explain_reports_correct_trial_period_statistics.js b/jstests/noPassthrough/explain_reports_correct_trial_period_statistics.js
index 05289cfde86..eafce2c9a62 100644
--- a/jstests/noPassthrough/explain_reports_correct_trial_period_statistics.js
+++ b/jstests/noPassthrough/explain_reports_correct_trial_period_statistics.js
@@ -18,6 +18,7 @@ assert.commandWorked(coll.createIndex({b: 1}));
// Configure the server such that the trial period should end after doing 10 reads from storage.
assert.commandWorked(db.adminCommand({setParameter: 1, internalQueryPlanEvaluationWorks: 10}));
+assert.commandWorked(db.adminCommand({setParameter: 1, internalQueryPlanEvaluationWorksSbe: 10}));
assert.commandWorked(coll.insert(Array.from({length: 20}, (v, i) => {
return {a: 1, b: 1, c: i};