summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/replication_consistency_markers_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/replication_consistency_markers_impl.h')
-rw-r--r--src/mongo/db/repl/replication_consistency_markers_impl.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mongo/db/repl/replication_consistency_markers_impl.h b/src/mongo/db/repl/replication_consistency_markers_impl.h
index b26dc11b943..4c88556ccf5 100644
--- a/src/mongo/db/repl/replication_consistency_markers_impl.h
+++ b/src/mongo/db/repl/replication_consistency_markers_impl.h
@@ -71,8 +71,6 @@ public:
void setOplogTruncateAfterPoint(OperationContext* opCtx, const Timestamp& timestamp) override;
Timestamp getOplogTruncateAfterPoint(OperationContext* opCtx) const override;
- void removeOldOplogDeleteFromPointField(OperationContext* opCtx) override;
-
void setAppliedThrough(OperationContext* opCtx, const OpTime& optime) override;
void clearAppliedThrough(OperationContext* opCtx, const Timestamp& writeTimestamp) override;
OpTime getAppliedThrough(OperationContext* opCtx) const override;
@@ -102,13 +100,6 @@ private:
OperationContext* opCtx) const;
/**
- * Returns the old oplog delete from point from the minValid document. Returns an empty
- * timestamp if the field does not exist. This is used to fallback in FCV 3.4 if the oplog
- * truncate after point document does not exist.
- */
- Timestamp _getOldOplogDeleteFromPoint(OperationContext* opCtx) const;
-
- /**
* Upserts the OplogTruncateAfterPoint document according to the provided update spec. The
* collection must already exist. See `createInternalCollections`.
*