diff options
author | David Storch <david.storch@10gen.com> | 2014-06-03 11:04:28 -0400 |
---|---|---|
committer | David Storch <david.storch@10gen.com> | 2014-06-11 11:57:00 -0400 |
commit | 3e39c96ebbd90ebeb91d46f9dace6988a0152763 (patch) | |
tree | 147db9b069d4c65e8233a3f826dde9cefeddf60c /src/mongo/db/exec/skip.h | |
parent | c4db5777873c4973facc7ea5ba727565e7658d73 (diff) | |
download | mongo-3e39c96ebbd90ebeb91d46f9dace6988a0152763.tar.gz |
SERVER-14096 explain find() at queryPlanner verbosity
Enable by the setParameter 'enableNewExplain'
Diffstat (limited to 'src/mongo/db/exec/skip.h')
-rw-r--r-- | src/mongo/db/exec/skip.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mongo/db/exec/skip.h b/src/mongo/db/exec/skip.h index 9c907ac8bb0..48366a71616 100644 --- a/src/mongo/db/exec/skip.h +++ b/src/mongo/db/exec/skip.h @@ -54,6 +54,8 @@ namespace mongo { virtual PlanStageStats* getStats(); + static const char* kStageType; + private: WorkingSet* _ws; scoped_ptr<PlanStage> _child; @@ -63,6 +65,7 @@ namespace mongo { // Stats CommonStats _commonStats; + SkipStats _specificStats; }; } // namespace mongo |