summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/collection_scan.h
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/collection_scan.h
parentd7466fbe4ec1be205945170f038bbc37737abcb1 (diff)
downloadmongo-9d72fd0f2f18b66423b9107e30cf2792656d2eab.tar.gz
SERVER-16889.5 PlanExecutor::getStats() and PlanStage::getStats() return unique_ptr
Diffstat (limited to 'src/mongo/db/exec/collection_scan.h')
-rw-r--r--src/mongo/db/exec/collection_scan.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/collection_scan.h b/src/mongo/db/exec/collection_scan.h
index ec3ffe63bea..e2a3349847f 100644
--- a/src/mongo/db/exec/collection_scan.h
+++ b/src/mongo/db/exec/collection_scan.h
@@ -67,7 +67,7 @@ public:
return STAGE_COLLSCAN;
}
- virtual PlanStageStats* getStats();
+ virtual std::unique_ptr<PlanStageStats> getStats();
virtual const CommonStats* getCommonStats() const;