summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/expression.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/pipeline/expression.cpp')
-rw-r--r--src/mongo/db/pipeline/expression.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/pipeline/expression.cpp b/src/mongo/db/pipeline/expression.cpp
index 5e24100be98..d7afc3680bf 100644
--- a/src/mongo/db/pipeline/expression.cpp
+++ b/src/mongo/db/pipeline/expression.cpp
@@ -2426,10 +2426,10 @@ Value ExpressionFieldPath::evaluatePath(size_t index, const Document& input) con
/* if we've hit the end of the path, stop */
if (index == _fieldPath.getPathLength() - 1)
- return input[_fieldPath.getFieldName(index)];
+ return input[_fieldPath.getFieldNameHashed(index)];
// Try to dive deeper
- const Value val = input[_fieldPath.getFieldName(index)];
+ const Value val = input[_fieldPath.getFieldNameHashed(index)];
switch (val.getType()) {
case Object:
return evaluatePath(index + 1, val.getDocument());