summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/plan_executor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/query/plan_executor.h')
-rw-r--r--src/mongo/db/query/plan_executor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/query/plan_executor.h b/src/mongo/db/query/plan_executor.h
index 207fc6765c2..1e97963f67b 100644
--- a/src/mongo/db/query/plan_executor.h
+++ b/src/mongo/db/query/plan_executor.h
@@ -336,7 +336,7 @@ public:
* state. As such, if the plan yields, it must be notified of relevant writes so that
* we can ensure that it doesn't crash if we try to access invalid state.
*/
- void invalidate(OperationContext* txn, const RecordId& dl, InvalidationType type);
+ void invalidate(OperationContext* opCtx, const RecordId& dl, InvalidationType type);
/**
* Helper method to aid in displaying an ExecState for debug or other recreational purposes.
@@ -413,7 +413,7 @@ private:
/**
* Public factory methods delegate to this private factory to do their work.
*/
- static StatusWith<std::unique_ptr<PlanExecutor>> make(OperationContext* txn,
+ static StatusWith<std::unique_ptr<PlanExecutor>> make(OperationContext* opCtx,
std::unique_ptr<WorkingSet> ws,
std::unique_ptr<PlanStage> rt,
std::unique_ptr<QuerySolution> qs,