summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/aggregation_request_helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/pipeline/aggregation_request_helper.h')
-rw-r--r--src/mongo/db/pipeline/aggregation_request_helper.h24
1 files changed, 14 insertions, 10 deletions
diff --git a/src/mongo/db/pipeline/aggregation_request_helper.h b/src/mongo/db/pipeline/aggregation_request_helper.h
index 63d77287db4..c8adf37b2fe 100644
--- a/src/mongo/db/pipeline/aggregation_request_helper.h
+++ b/src/mongo/db/pipeline/aggregation_request_helper.h
@@ -67,11 +67,13 @@ static constexpr long long kDefaultBatchSize = 101;
* then 'explainVerbosity' contains this information. In this case, 'cmdObj' may not itself
* contain the explain specifier. Otherwise, 'explainVerbosity' should be boost::none.
*/
-AggregateCommandRequest parseFromBSON(OperationContext* opCtx,
- NamespaceString nss,
- const BSONObj& cmdObj,
- boost::optional<ExplainOptions::Verbosity> explainVerbosity,
- bool apiStrict);
+AggregateCommandRequest parseFromBSON(
+ OperationContext* opCtx,
+ NamespaceString nss,
+ const BSONObj& cmdObj,
+ boost::optional<ExplainOptions::Verbosity> explainVerbosity,
+ bool apiStrict,
+ const SerializationContext& serializationContext = SerializationContext());
StatusWith<AggregateCommandRequest> parseFromBSONForTests(
NamespaceString nss,
@@ -83,11 +85,13 @@ StatusWith<AggregateCommandRequest> parseFromBSONForTests(
* Convenience overload which constructs the request's NamespaceString from the given database
* name and command object.
*/
-AggregateCommandRequest parseFromBSON(OperationContext* opCtx,
- const DatabaseName& dbName,
- const BSONObj& cmdObj,
- boost::optional<ExplainOptions::Verbosity> explainVerbosity,
- bool apiStrict);
+AggregateCommandRequest parseFromBSON(
+ OperationContext* opCtx,
+ const DatabaseName& dbName,
+ const BSONObj& cmdObj,
+ boost::optional<ExplainOptions::Verbosity> explainVerbosity,
+ bool apiStrict,
+ const SerializationContext& serializationContext = SerializationContext());
StatusWith<AggregateCommandRequest> parseFromBSONForTests(
const DatabaseName& dbName,