diff options
author | Steve La <steve.la@mongodb.com> | 2021-09-19 21:01:39 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-09-19 21:35:08 +0000 |
commit | a0ca315a73a8028eb0ffd00531fd98638bc7608a (patch) | |
tree | 0ede92c9270b1baace44780f3d099ff3347b7ae2 /src | |
parent | 250b78db6c097a6dc0de4bb142a8df56b527979c (diff) | |
download | mongo-a0ca315a73a8028eb0ffd00531fd98638bc7608a.tar.gz |
SERVER-59895 init _sbeCompatible
Diffstat (limited to 'src')
-rw-r--r-- | src/mongo/db/pipeline/document_source_group.cpp | 3 |
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); |