summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/process_interface_shardsvr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/pipeline/process_interface_shardsvr.h')
-rw-r--r--src/mongo/db/pipeline/process_interface_shardsvr.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mongo/db/pipeline/process_interface_shardsvr.h b/src/mongo/db/pipeline/process_interface_shardsvr.h
index 39d550fc083..ddafac24cdb 100644
--- a/src/mongo/db/pipeline/process_interface_shardsvr.h
+++ b/src/mongo/db/pipeline/process_interface_shardsvr.h
@@ -53,7 +53,8 @@ public:
void insert(const boost::intrusive_ptr<ExpressionContext>& expCtx,
const NamespaceString& ns,
std::vector<BSONObj>&& objs,
- const WriteConcernOptions& wc) final;
+ const WriteConcernOptions& wc,
+ boost::optional<OID> targetEpoch) final;
/**
* Replaces the documents matching 'queries' with 'updates' using the ClusterWriter for locking,
@@ -65,7 +66,8 @@ public:
std::vector<BSONObj>&& updates,
const WriteConcernOptions& wc,
bool upsert,
- bool multi) final;
+ bool multi,
+ boost::optional<OID> targetEpoch) final;
};
} // namespace mongo