summaryrefslogtreecommitdiff
path: root/jstests
diff options
context:
space:
mode:
authorZixuan Zhuang <zixuan.zhuang@mongodb.com>2023-05-04 18:54:21 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-05-04 21:12:47 +0000
commitf20e7ef4ed534961d07c261a2929b6b3a9c98747 (patch)
treed72f63c006e174591d302aaa83a71e3b0803b0b6 /jstests
parent881020bf20b0c0dcf1ac949aa8d9e6b7f62bd0a9 (diff)
downloadmongo-f20e7ef4ed534961d07c261a2929b6b3a9c98747.tar.gz
SERVER-68810 complete TODO
Diffstat (limited to 'jstests')
-rw-r--r--jstests/noPassthrough/arithmetic_expression_constant_folding.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/jstests/noPassthrough/arithmetic_expression_constant_folding.js b/jstests/noPassthrough/arithmetic_expression_constant_folding.js
index da298ab8434..14319ba2a8c 100644
--- a/jstests/noPassthrough/arithmetic_expression_constant_folding.js
+++ b/jstests/noPassthrough/arithmetic_expression_constant_folding.js
@@ -89,16 +89,9 @@ function runRandomizedPropertyTest({op, min, max}) {
assertPipelineCorrect(pipeline, v);
}
-// TODO: SERVER-67282 Randomized property testing should work after SBE is updated to match classic
-// engine, so remove this setParameter. When this knob is removed from this test, move this test
-// into jstests/aggregation/expressions/arithmetic_constant_folding.js.
-testDB.adminCommand({setParameter: 1, internalQueryFrameworkControl: "forceClassicEngine"});
for (let i = 0; i < 5; i++) {
runRandomizedPropertyTest({op: "$add", min: -314159255, max: 314159255});
runRandomizedPropertyTest({op: "$multiply", min: -31415, max: 31415});
}
-// TODO: SERVER-67282 Randomized property testing should work after SBE is updated to match classic
-// engine, so remove this setParameter.
-testDB.adminCommand({setParameter: 1, internalQueryFrameworkControl: "trySbeEngine"});
MongoRunner.stopMongod(conn);
})();