summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSteve La <steve.la@mongodb.com>2021-09-19 21:01:39 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-09-19 21:35:08 +0000
commita0ca315a73a8028eb0ffd00531fd98638bc7608a (patch)
tree0ede92c9270b1baace44780f3d099ff3347b7ae2 /src
parent250b78db6c097a6dc0de4bb142a8df56b527979c (diff)
downloadmongo-a0ca315a73a8028eb0ffd00531fd98638bc7608a.tar.gz
SERVER-59895 init _sbeCompatible
Diffstat (limited to 'src')
-rw-r--r--src/mongo/db/pipeline/document_source_group.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/pipeline/document_source_group.cpp b/src/mongo/db/pipeline/document_source_group.cpp
index 98ce120c0df..1ca22c9adf3 100644
--- a/src/mongo/db/pipeline/document_source_group.cpp
+++ b/src/mongo/db/pipeline/document_source_group.cpp
@@ -406,7 +406,8 @@ DocumentSourceGroup::DocumentSourceGroup(const intrusive_ptr<ExpressionContext>&
: nullptr),
_initialized(false),
_groups(expCtx->getValueComparator().makeUnorderedValueMap<Accumulators>()),
- _spilled(false) {}
+ _spilled(false),
+ _sbeCompatible(false) {}
void DocumentSourceGroup::addAccumulator(AccumulationStatement accumulationStatement) {
_accumulatedFields.push_back(accumulationStatement);