summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/process_interface_standalone.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/pipeline/process_interface_standalone.h')
-rw-r--r--src/mongo/db/pipeline/process_interface_standalone.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/db/pipeline/process_interface_standalone.h b/src/mongo/db/pipeline/process_interface_standalone.h
index e02ac9e6339..de64e9b0578 100644
--- a/src/mongo/db/pipeline/process_interface_standalone.h
+++ b/src/mongo/db/pipeline/process_interface_standalone.h
@@ -58,11 +58,13 @@ public:
bool isSharded(OperationContext* opCtx, const NamespaceString& nss) final;
void insert(const boost::intrusive_ptr<ExpressionContext>& expCtx,
const NamespaceString& ns,
- std::vector<BSONObj>&& objs) override;
+ std::vector<BSONObj>&& objs,
+ const WriteConcernOptions& wc) override;
void update(const boost::intrusive_ptr<ExpressionContext>& expCtx,
const NamespaceString& ns,
std::vector<BSONObj>&& queries,
std::vector<BSONObj>&& updates,
+ const WriteConcernOptions& wc,
bool upsert,
bool multi) override;
CollectionIndexUsageMap getIndexStats(OperationContext* opCtx, const NamespaceString& ns) final;