summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline
diff options
context:
space:
mode:
authorNicholas Zolnierz <nicholas.zolnierz@mongodb.com>2020-01-27 16:18:18 +0000
committerevergreen <evergreen@mongodb.com>2020-01-27 16:18:18 +0000
commit138b4bbdbb0c6f29e213925f10007fff290f634b (patch)
treecc6b50417d9b36e2f25f37ecccc4636a6b035f49 /src/mongo/db/pipeline
parentbda3f6cf1ae0cc3801478e970caafd359f81910a (diff)
downloadmongo-138b4bbdbb0c6f29e213925f10007fff290f634b.tar.gz
SERVER-45725 Update dependencies for $unionWith
Diffstat (limited to 'src/mongo/db/pipeline')
-rw-r--r--src/mongo/db/pipeline/document_source_union_with.cpp5
-rw-r--r--src/mongo/db/pipeline/document_source_union_with_test.cpp44
2 files changed, 48 insertions, 1 deletions
diff --git a/src/mongo/db/pipeline/document_source_union_with.cpp b/src/mongo/db/pipeline/document_source_union_with.cpp
index 66fd28caa94..af29b0ae3b9 100644
--- a/src/mongo/db/pipeline/document_source_union_with.cpp
+++ b/src/mongo/db/pipeline/document_source_union_with.cpp
@@ -161,7 +161,10 @@ void DocumentSourceUnionWith::serializeToArray(
}
DepsTracker::State DocumentSourceUnionWith::getDependencies(DepsTracker* deps) const {
- return DepsTracker::State::SEE_NEXT;
+ // Since the $unionWith stage is a simple passthrough, we *could* report SEE_NEXT here in an
+ // attempt to get a covered plan for the base collection. The ideal solution would involve
+ // pushing down any dependencies to the inner pipeline as well.
+ return DepsTracker::State::NOT_SUPPORTED;
}
void DocumentSourceUnionWith::detachFromOperationContext() {
diff --git a/src/mongo/db/pipeline/document_source_union_with_test.cpp b/src/mongo/db/pipeline/document_source_union_with_test.cpp
index 157731bbb20..9d1ca2fbbff 100644
--- a/src/mongo/db/pipeline/document_source_union_with_test.cpp
+++ b/src/mongo/db/pipeline/document_source_union_with_test.cpp
@@ -43,6 +43,7 @@
#include "mongo/db/pipeline/document_source_add_fields.h"
#include "mongo/db/pipeline/document_source_match.h"
#include "mongo/db/pipeline/document_source_mock.h"
+#include "mongo/db/pipeline/document_source_replace_root.h"
#include "mongo/db/pipeline/document_source_union_with.h"
#include "mongo/db/pipeline/pipeline.h"
#include "mongo/db/pipeline/stub_mongo_process_interface_lookup_single_document.h"
@@ -299,5 +300,48 @@ TEST_F(DocumentSourceUnionWithTest, PropagatePauses) {
ASSERT_TRUE(unionWithTwo.getNext().isEOF());
}
+TEST_F(DocumentSourceUnionWithTest, DependencyAnalysisReportsFullDoc) {
+ auto expCtx = getExpCtx();
+ const auto replaceRoot =
+ DocumentSourceReplaceRoot::createFromBson(BSON("$replaceRoot" << BSON("newRoot"
+ << "$b"))
+ .firstElement(),
+ expCtx);
+ const auto unionWith = make_intrusive<DocumentSourceUnionWith>(
+ expCtx,
+ uassertStatusOK(
+ Pipeline::create(std::list<boost::intrusive_ptr<DocumentSource>>{}, expCtx)));
+
+ // With the $unionWith *before* the $replaceRoot, the dependency analysis will report that all
+ // fields are needed.
+ auto pipeline = uassertStatusOK(Pipeline::create({unionWith, replaceRoot}, expCtx));
+
+ auto deps = pipeline->getDependencies(DepsTracker::kNoMetadata);
+ ASSERT_BSONOBJ_EQ(deps.toProjectionWithoutMetadata(), BSONObj());
+ ASSERT_TRUE(deps.needWholeDocument);
+}
+
+TEST_F(DocumentSourceUnionWithTest, DependencyAnalysisReportsReferencedFieldsBeforeUnion) {
+ auto expCtx = getExpCtx();
+
+ const auto replaceRoot =
+ DocumentSourceReplaceRoot::createFromBson(BSON("$replaceRoot" << BSON("newRoot"
+ << "$b"))
+ .firstElement(),
+ expCtx);
+ const auto unionWith = make_intrusive<DocumentSourceUnionWith>(
+ expCtx,
+ uassertStatusOK(
+ Pipeline::create(std::list<boost::intrusive_ptr<DocumentSource>>{}, expCtx)));
+
+ // With the $unionWith *after* the $replaceRoot, the dependency analysis will now report only
+ // the referenced fields.
+ auto pipeline = uassertStatusOK(Pipeline::create({replaceRoot, unionWith}, expCtx));
+
+ auto deps = pipeline->getDependencies(DepsTracker::kNoMetadata);
+ ASSERT_BSONOBJ_EQ(deps.toProjectionWithoutMetadata(), BSON("b" << 1 << "_id" << 0));
+ ASSERT_FALSE(deps.needWholeDocument);
+}
+
} // namespace
} // namespace mongo