summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/merge_sort.cpp
diff options
context:
space:
mode:
authorQingyang Chen <qingyang.chen@10gen.com>2015-06-25 13:50:50 -0400
committerQingyang Chen <qingyang.chen@10gen.com>2015-06-29 16:05:26 -0400
commit9d72fd0f2f18b66423b9107e30cf2792656d2eab (patch)
tree20a29314d23e781d0e01ce9a8e877294abe6a6de /src/mongo/db/exec/merge_sort.cpp
parentd7466fbe4ec1be205945170f038bbc37737abcb1 (diff)
downloadmongo-9d72fd0f2f18b66423b9107e30cf2792656d2eab.tar.gz
SERVER-16889.5 PlanExecutor::getStats() and PlanStage::getStats() return unique_ptr
Diffstat (limited to 'src/mongo/db/exec/merge_sort.cpp')
-rw-r--r--src/mongo/db/exec/merge_sort.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/mongo/db/exec/merge_sort.cpp b/src/mongo/db/exec/merge_sort.cpp
index 7f0581da18c..a710171975a 100644
--- a/src/mongo/db/exec/merge_sort.cpp
+++ b/src/mongo/db/exec/merge_sort.cpp
@@ -31,14 +31,16 @@
#include "mongo/db/exec/scoped_timer.h"
#include "mongo/db/exec/working_set.h"
#include "mongo/db/exec/working_set_common.h"
+#include "mongo/stdx/memory.h"
#include "mongo/util/mongoutils/str.h"
namespace mongo {
-using std::unique_ptr;
using std::list;
using std::string;
+using std::unique_ptr;
using std::vector;
+using stdx::make_unique;
// static
const char* MergeSortStage::kStageType = "SORT_MERGE";
@@ -267,17 +269,17 @@ vector<PlanStage*> MergeSortStage::getChildren() const {
return _children;
}
-PlanStageStats* MergeSortStage::getStats() {
+unique_ptr<PlanStageStats> MergeSortStage::getStats() {
_commonStats.isEOF = isEOF();
_specificStats.sortPattern = _pattern;
- unique_ptr<PlanStageStats> ret(new PlanStageStats(_commonStats, STAGE_SORT_MERGE));
- ret->specific.reset(new MergeSortStats(_specificStats));
+ unique_ptr<PlanStageStats> ret = make_unique<PlanStageStats>(_commonStats, STAGE_SORT_MERGE);
+ ret->specific = make_unique<MergeSortStats>(_specificStats);
for (size_t i = 0; i < _children.size(); ++i) {
- ret->children.push_back(_children[i]->getStats());
+ ret->children.push_back(_children[i]->getStats().release());
}
- return ret.release();
+ return ret;
}
const CommonStats* MergeSortStage::getCommonStats() const {