summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/and_hash.cpp
diff options
context:
space:
mode:
authorCharlie Swanson <charlie.swanson@mongodb.com>2015-10-08 13:15:59 -0400
committerCharlie Swanson <charlie.swanson@mongodb.com>2015-10-08 16:56:37 -0400
commit5aefcdd1e32f411c35c4c3add6e67dcd9ccbee54 (patch)
tree07ef20f49abc088f3c147b63ce49d4e17947699e /src/mongo/db/exec/and_hash.cpp
parent4a42d61c6463e774c2308ae2f329e168759aa390 (diff)
downloadmongo-5aefcdd1e32f411c35c4c3add6e67dcd9ccbee54.tar.gz
SERVER-20111 Plan summary should only include the winning plan
Diffstat (limited to 'src/mongo/db/exec/and_hash.cpp')
-rw-r--r--src/mongo/db/exec/and_hash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/and_hash.cpp b/src/mongo/db/exec/and_hash.cpp
index 4518802afba..911ec6482cb 100644
--- a/src/mongo/db/exec/and_hash.cpp
+++ b/src/mongo/db/exec/and_hash.cpp
@@ -490,7 +490,7 @@ unique_ptr<PlanStageStats> AndHashStage::getStats() {
unique_ptr<PlanStageStats> ret = make_unique<PlanStageStats>(_commonStats, STAGE_AND_HASH);
ret->specific = make_unique<AndHashStats>(_specificStats);
for (size_t i = 0; i < _children.size(); ++i) {
- ret->children.push_back(_children[i]->getStats().release());
+ ret->children.emplace_back(_children[i]->getStats());
}
return ret;