summaryrefslogtreecommitdiff
path: root/src/mongo/s/query/cluster_client_cursor_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/query/cluster_client_cursor_impl.h')
-rw-r--r--src/mongo/s/query/cluster_client_cursor_impl.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mongo/s/query/cluster_client_cursor_impl.h b/src/mongo/s/query/cluster_client_cursor_impl.h
index 07dbab2094d..8b5e5b0a855 100644
--- a/src/mongo/s/query/cluster_client_cursor_impl.h
+++ b/src/mongo/s/query/cluster_client_cursor_impl.h
@@ -123,7 +123,8 @@ public:
/**
* Constructs a cluster client cursor.
*/
- ClusterClientCursorImpl(executor::TaskExecutor* executor,
+ ClusterClientCursorImpl(OperationContext* opCtx,
+ executor::TaskExecutor* executor,
ClusterClientCursorParams&& params,
boost::optional<LogicalSessionId> lsid);
@@ -131,7 +132,8 @@ private:
/**
* Constructs the pipeline of MergerPlanStages which will be used to answer the query.
*/
- std::unique_ptr<RouterExecStage> buildMergerPlan(executor::TaskExecutor* executor,
+ std::unique_ptr<RouterExecStage> buildMergerPlan(OperationContext* opCtx,
+ executor::TaskExecutor* executor,
ClusterClientCursorParams* params);
ClusterClientCursorParams _params;