summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/document_source_match.h
diff options
context:
space:
mode:
authorCharlie Swanson <charlie.swanson@mongodb.com>2018-11-29 17:39:33 -0500
committerCharlie Swanson <charlie.swanson@mongodb.com>2019-01-16 10:09:59 -0500
commit0cb2195939494660334db8e9d0a52509caeb621c (patch)
tree2d71e10270020f2e7ea8bf3bfb812b13f83abbca /src/mongo/db/pipeline/document_source_match.h
parentd29f140ae0e69057d8b1801f4d2a993612fa5bcb (diff)
downloadmongo-0cb2195939494660334db8e9d0a52509caeb621c.tar.gz
SERVER-38311 Adjust $out merging strategy
Diffstat (limited to 'src/mongo/db/pipeline/document_source_match.h')
-rw-r--r--src/mongo/db/pipeline/document_source_match.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mongo/db/pipeline/document_source_match.h b/src/mongo/db/pipeline/document_source_match.h
index fd08a52250c..d770006e2d4 100644
--- a/src/mongo/db/pipeline/document_source_match.h
+++ b/src/mongo/db/pipeline/document_source_match.h
@@ -162,6 +162,10 @@ public:
const std::string& path,
const boost::intrusive_ptr<ExpressionContext>& expCtx);
+ boost::optional<MergingLogic> mergingLogic() final {
+ return boost::none;
+ }
+
protected:
DocumentSourceMatch(const BSONObj& query,
const boost::intrusive_ptr<ExpressionContext>& expCtx);