We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 035ecbb commit d13faacCopy full SHA for d13faac
src/mongo/db/query/query_solution.h
@@ -1687,7 +1687,10 @@ struct SentinelNode : public QuerySolutionNode {
1687
};
1688
1689
struct SearchNode : public QuerySolutionNode {
1690
- explicit SearchNode(bool isSearchMeta) : isSearchMeta(isSearchMeta) {}
+ explicit SearchNode(bool isSearchMeta) : isSearchMeta(isSearchMeta) {
1691
+ // TODO SERVER-78565: Support $search in SBE plan cache
1692
+ eligibleForPlanCache = false;
1693
+ }
1694
1695
StageType getType() const override {
1696
return STAGE_SEARCH;
0 commit comments