summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/sbe_stage_builder_expression.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/query/sbe_stage_builder_expression.cpp')
-rw-r--r--src/mongo/db/query/sbe_stage_builder_expression.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/query/sbe_stage_builder_expression.cpp b/src/mongo/db/query/sbe_stage_builder_expression.cpp
index 5c68c224b85..6353d5e31a1 100644
--- a/src/mongo/db/query/sbe_stage_builder_expression.cpp
+++ b/src/mongo/db/query/sbe_stage_builder_expression.cpp
@@ -1173,7 +1173,7 @@ public:
collatorSlot,
_context->planNodeId);
- // Create a branch stage to select between the branch that produces one null if any eleemnts
+ // Create a branch stage to select between the branch that produces one null if any elements
// in the original input were null or missing, or otherwise select the branch that unwinds
// and concatenates elements into the output array.
auto [nullExpr, nullStage] = makeNullLimitCoscanTree();
@@ -1790,7 +1790,7 @@ public:
}
sbe::value::SlotId slotId;
- if (expr->isRootFieldPath()) {
+ if (!expr->isVariableReference()) {
slotId = _context->rootSlot;
} else {
auto it = _context->environment.find(expr->getVariableId());