diff options
Diffstat (limited to 'src/mongo/db/commands/mr.cpp')
-rw-r--r-- | src/mongo/db/commands/mr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/commands/mr.cpp b/src/mongo/db/commands/mr.cpp index 217db0ed3d5..99dacfecbfa 100644 --- a/src/mongo/db/commands/mr.cpp +++ b/src/mongo/db/commands/mr.cpp @@ -558,7 +558,7 @@ void State::prepTempCollection() { BSONObjIterator j(currIndex->infoObj()); while (j.more()) { BSONElement e = j.next(); - if (str::equals(e.fieldName(), "_id") || str::equals(e.fieldName(), "ns")) + if (e.fieldNameStringData() == "_id" || e.fieldNameStringData() == "ns") continue; b.append(e); } |