diff options
author | Mickey. J Winters <mickey.winters@mongodb.com> | 2021-10-12 00:11:27 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-10-12 00:45:18 +0000 |
commit | 3f7016e2c2e746ff4a009750044a9bd14cf6fe6f (patch) | |
tree | b88d05d6b816feb04d95aeed609e9a169410e15c /jstests/noPassthrough | |
parent | 14784757ff5e983ea40b21c14e661aba81dfc083 (diff) | |
download | mongo-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.js | 1 |
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, |