summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough
diff options
context:
space:
mode:
authorMickey. J Winters <mickey.winters@mongodb.com>2021-10-12 00:11:27 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-10-12 00:45:18 +0000
commit3f7016e2c2e746ff4a009750044a9bd14cf6fe6f (patch)
treeb88d05d6b816feb04d95aeed609e9a169410e15c /jstests/noPassthrough
parent14784757ff5e983ea40b21c14e661aba81dfc083 (diff)
downloadmongo-3f7016e2c2e746ff4a009750044a9bd14cf6fe6f.tar.gz
SERVER-59613 $range expression should error if it exceeds memory limit
Diffstat (limited to 'jstests/noPassthrough')
-rw-r--r--jstests/noPassthrough/query_knobs_validation.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/jstests/noPassthrough/query_knobs_validation.js b/jstests/noPassthrough/query_knobs_validation.js
index 1098822edb5..e122669c737 100644
--- a/jstests/noPassthrough/query_knobs_validation.js
+++ b/jstests/noPassthrough/query_knobs_validation.js
@@ -40,6 +40,7 @@ const expectedParamDefaults = {
internalDocumentSourceSetWindowFieldsMaxMemoryBytes: 100 * 1024 * 1024,
internalQueryMaxJsEmitBytes: 100 * 1024 * 1024,
internalQueryMaxPushBytes: 100 * 1024 * 1024,
+ internalQueryMaxRangeBytes: 100 * 1024 * 1024,
internalQueryMaxAddToSetBytes: 100 * 1024 * 1024,
// Should be half the value of 'internalQueryExecYieldIterations' parameter.
internalInsertMaxBatchSize: 500,