diff options
Diffstat (limited to 'src/mongo/db/exec/count.h')
-rw-r--r-- | src/mongo/db/exec/count.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mongo/db/exec/count.h b/src/mongo/db/exec/count.h index 31e2ad8ba96..51054dfe4dd 100644 --- a/src/mongo/db/exec/count.h +++ b/src/mongo/db/exec/count.h @@ -78,6 +78,8 @@ namespace mongo { virtual PlanStageStats* getStats(); + static const char* kStageType; + private: /** * Initialize the underlying IndexCursor @@ -110,6 +112,8 @@ namespace mongo { bool _hitEnd; bool _shouldDedup; + + CommonStats _commonStats; }; } // namespace mongo |