summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/query_solution.h
diff options
context:
space:
mode:
authorauto-revert-processor <dev-prod-dag@mongodb.com>2022-04-13 11:28:53 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-04-13 12:19:04 +0000
commit17f587da99411ee5112c7a1f397327e9ba9ad4c0 (patch)
treef9a0fb1ee9643b6b68653387d072bdbf7428754c /src/mongo/db/query/query_solution.h
parente34b266ff2434e509e542973aa8bf2e9dc7b5744 (diff)
downloadmongo-17f587da99411ee5112c7a1f397327e9ba9ad4c0.tar.gz
Revert "SERVER-64443 Verify that replanning works for HashJoin"
This reverts commit b74d02e64d4c0e5d6a55022b53cbb3abb2c04fba.
Diffstat (limited to 'src/mongo/db/query/query_solution.h')
-rw-r--r--src/mongo/db/query/query_solution.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mongo/db/query/query_solution.h b/src/mongo/db/query/query_solution.h
index 694f5d7c681..6446fe42cc5 100644
--- a/src/mongo/db/query/query_solution.h
+++ b/src/mongo/db/query/query_solution.h
@@ -1462,9 +1462,6 @@ struct EqLookupNode : public QuerySolutionNode {
// Execute the join by iterating over the foreign collection for each local key.
kNestedLoopJoin,
-
- // Create a plan for a non existent foreign collection.
- kNonExistentForeignCollection,
};
static StringData serializeLookupStrategy(LookupStrategy strategy) {
@@ -1475,8 +1472,6 @@ struct EqLookupNode : public QuerySolutionNode {
return "IndexedLoopJoin";
case EqLookupNode::LookupStrategy::kNestedLoopJoin:
return "NestedLoopJoin";
- case EqLookupNode::LookupStrategy::kNonExistentForeignCollection:
- return "NonExistentForeignCollection";
default:
uasserted(6357204, "Unknown $lookup strategy type");
}