summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/plan_executor_factory.h
diff options
context:
space:
mode:
authorMindaugas Malinauskas <mindaugas.malinauskas@mongodb.com>2021-02-03 10:52:08 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-03-10 13:01:50 +0000
commit159a29e1e69948106f5bc601042b1baecf6fe982 (patch)
treef9ba9d588363c4f680f5764617eac266e7df4b33 /src/mongo/db/query/plan_executor_factory.h
parentbfbe088aabd4716348eb17602f669613f9ce6b45 (diff)
downloadmongo-159a29e1e69948106f5bc601042b1baecf6fe982.tar.gz
SERVER-53534 Support including postBatchResumeToken in cursor response for non-change streams aggregations
Diffstat (limited to 'src/mongo/db/query/plan_executor_factory.h')
-rw-r--r--src/mongo/db/query/plan_executor_factory.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/db/query/plan_executor_factory.h b/src/mongo/db/query/plan_executor_factory.h
index 1477801229c..380e21cb1e4 100644
--- a/src/mongo/db/query/plan_executor_factory.h
+++ b/src/mongo/db/query/plan_executor_factory.h
@@ -34,6 +34,7 @@
#include "mongo/db/exec/sbe/stages/stages.h"
#include "mongo/db/exec/working_set.h"
#include "mongo/db/pipeline/pipeline.h"
+#include "mongo/db/pipeline/plan_executor_pipeline.h"
#include "mongo/db/query/plan_executor.h"
#include "mongo/db/query/plan_yield_policy_sbe.h"
#include "mongo/db/query/query_solution.h"
@@ -136,6 +137,7 @@ StatusWith<std::unique_ptr<PlanExecutor, PlanExecutor::Deleter>> make(
std::unique_ptr<PlanExecutor, PlanExecutor::Deleter> make(
boost::intrusive_ptr<ExpressionContext> expCtx,
std::unique_ptr<Pipeline, PipelineDeleter> pipeline,
- bool isChangeStream);
+ PlanExecutorPipeline::ResumableScanType resumableScanType =
+ PlanExecutorPipeline::ResumableScanType::kNone);
} // namespace mongo::plan_executor_factory