summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/count_scan.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/count_scan.h')
-rw-r--r--src/mongo/db/exec/count_scan.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/count_scan.h b/src/mongo/db/exec/count_scan.h
index f53c5e3ab0f..d4eb4656133 100644
--- a/src/mongo/db/exec/count_scan.h
+++ b/src/mongo/db/exec/count_scan.h
@@ -67,7 +67,7 @@ struct CountScanParams {
*/
class CountScan final : public PlanStage {
public:
- CountScan(OperationContext* txn, const CountScanParams& params, WorkingSet* workingSet);
+ CountScan(OperationContext* opCtx, const CountScanParams& params, WorkingSet* workingSet);
StageState doWork(WorkingSetID* out) final;
bool isEOF() final;
@@ -75,7 +75,7 @@ public:
void doRestoreState() final;
void doDetachFromOperationContext() final;
void doReattachToOperationContext() final;
- void doInvalidate(OperationContext* txn, const RecordId& dl, InvalidationType type) final;
+ void doInvalidate(OperationContext* opCtx, const RecordId& dl, InvalidationType type) final;
StageType stageType() const final {
return STAGE_COUNT_SCAN;