summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/text.h')
-rw-r--r--src/mongo/db/exec/text.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/mongo/db/exec/text.h b/src/mongo/db/exec/text.h
index 27b5bc62231..4d0d57f66d0 100644
--- a/src/mongo/db/exec/text.h
+++ b/src/mongo/db/exec/text.h
@@ -76,25 +76,16 @@ public:
WorkingSet* ws,
const MatchExpression* filter);
- ~TextStage() final;
StageState work(WorkingSetID* out) final;
bool isEOF() final;
- void saveState() final;
- void restoreState(OperationContext* opCtx) final;
- void invalidate(OperationContext* txn, const RecordId& dl, InvalidationType type) final;
-
- vector<PlanStage*> getChildren() const;
-
StageType stageType() const final {
return STAGE_TEXT;
}
std::unique_ptr<PlanStageStats> getStats();
- const CommonStats* getCommonStats() const final;
-
const SpecificStats* getSpecificStats() const final;
static const char* kStageType;
@@ -110,11 +101,7 @@ private:
// Parameters of this text stage.
TextStageParams _params;
- // The root of the text query tree.
- unique_ptr<PlanStage> _textTreeRoot;
-
// Stats.
- CommonStats _commonStats;
TextStats _specificStats;
};