summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/process_interface_standalone.h
diff options
context:
space:
mode:
authorNick Zolnierz <nicholas.zolnierz@mongodb.com>2018-10-22 16:32:24 -0400
committerIan Boros <ian.boros@10gen.com>2018-10-31 13:20:36 -0400
commitc9290364162cd76697ebee76c63ec148cd305101 (patch)
treeaef6b15af18651fe86d6274ed85257ec7af9a879 /src/mongo/db/pipeline/process_interface_standalone.h
parent3caa3c4a4be7b84823f22f481365f58b124d6d00 (diff)
downloadmongo-c9290364162cd76697ebee76c63ec148cd305101.tar.gz
SERVER-37191 writeConcern for $out
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;