summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/mr.cpp
diff options
context:
space:
mode:
authorJames Wahlin <james.wahlin@10gen.com>2016-05-06 15:52:38 -0400
committerJames Wahlin <james.wahlin@10gen.com>2016-05-17 09:22:52 -0400
commit47deea0b0a619c7aad4c8a4acdd91f15e8923cb8 (patch)
treebf3ff3a500e212d1a14019bb79eeeb215b958b13 /src/mongo/db/commands/mr.cpp
parent77d99b27649d4f81302fde2cb7cd7f4967b9646c (diff)
downloadmongo-47deea0b0a619c7aad4c8a4acdd91f15e8923cb8.tar.gz
SERVER-23260 Remove CachedBSONObj from curop.h
Diffstat (limited to 'src/mongo/db/commands/mr.cpp')
-rw-r--r--src/mongo/db/commands/mr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/commands/mr.cpp b/src/mongo/db/commands/mr.cpp
index 22597ba6d7c..8865e42cace 100644
--- a/src/mongo/db/commands/mr.cpp
+++ b/src/mongo/db/commands/mr.cpp
@@ -1545,7 +1545,7 @@ public:
if (curOp->shouldDBProfile(curOp->elapsedMillis())) {
BSONObjBuilder execStatsBob;
Explain::getWinningPlanStats(exec.get(), &execStatsBob);
- curOp->debug().execStats.set(execStatsBob.obj());
+ curOp->debug().execStats = execStatsBob.obj();
}
}
pm.finished();