summaryrefslogtreecommitdiff
path: root/src/mongo/s/query/router_exec_stage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/query/router_exec_stage.h')
-rw-r--r--src/mongo/s/query/router_exec_stage.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/s/query/router_exec_stage.h b/src/mongo/s/query/router_exec_stage.h
index 5fcb6053e58..f6128a53e43 100644
--- a/src/mongo/s/query/router_exec_stage.h
+++ b/src/mongo/s/query/router_exec_stage.h
@@ -66,13 +66,13 @@ public:
* holding on to a subset of the returned results and need to minimize memory usage, call copy()
* on the BSONObjs.
*/
- virtual StatusWith<ClusterQueryResult> next(OperationContext* txn) = 0;
+ virtual StatusWith<ClusterQueryResult> next(OperationContext* opCtx) = 0;
/**
* Must be called before destruction to abandon a not-yet-exhausted plan. May block waiting for
* responses from remote hosts.
*/
- virtual void kill(OperationContext* txn) = 0;
+ virtual void kill(OperationContext* opCtx) = 0;
/**
* Returns whether or not all the remote cursors are exhausted.