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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/text.h b/src/mongo/db/exec/text.h
index 6335c1cf2d7..d31f42c6e5a 100644
--- a/src/mongo/db/exec/text.h
+++ b/src/mongo/db/exec/text.h
@@ -71,7 +71,7 @@ struct TextStageParams {
*/
class TextStage final : public PlanStage {
public:
- TextStage(OperationContext* txn,
+ TextStage(OperationContext* opCtx,
const TextStageParams& params,
WorkingSet* ws,
const MatchExpression* filter);
@@ -94,7 +94,7 @@ private:
/**
* Helper method to built the query execution plan for the text stage.
*/
- unique_ptr<PlanStage> buildTextTree(OperationContext* txn,
+ unique_ptr<PlanStage> buildTextTree(OperationContext* opCtx,
WorkingSet* ws,
const MatchExpression* filter) const;