summaryrefslogtreecommitdiff
path: root/src/mongo/embedded
diff options
context:
space:
mode:
authorTess Avitabile <tess.avitabile@mongodb.com>2020-07-30 17:03:12 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-07-31 14:17:03 +0000
commitd838d1245d913970685928ae94c906b2deb5db4e (patch)
tree99e55551044b01550c98dc3941832b6b7dfa9b31 /src/mongo/embedded
parent17cea3d5d163f4398682edd6c9e8c454fd77db66 (diff)
downloadmongo-d838d1245d913970685928ae94c906b2deb5db4e.tar.gz
SERVER-49732 Change _currentCommittedSnapshot to be an OpTime instead of an OpTimeAndWallTime
Diffstat (limited to 'src/mongo/embedded')
-rw-r--r--src/mongo/embedded/replication_coordinator_embedded.cpp4
-rw-r--r--src/mongo/embedded/replication_coordinator_embedded.h2
2 files changed, 0 insertions, 6 deletions
diff --git a/src/mongo/embedded/replication_coordinator_embedded.cpp b/src/mongo/embedded/replication_coordinator_embedded.cpp
index 303d5bcd301..4f3d139b21a 100644
--- a/src/mongo/embedded/replication_coordinator_embedded.cpp
+++ b/src/mongo/embedded/replication_coordinator_embedded.cpp
@@ -148,10 +148,6 @@ OpTime ReplicationCoordinatorEmbedded::getCurrentCommittedSnapshotOpTime() const
UASSERT_NOT_IMPLEMENTED;
}
-OpTimeAndWallTime ReplicationCoordinatorEmbedded::getCurrentCommittedSnapshotOpTimeAndWallTime()
- const {
- UASSERT_NOT_IMPLEMENTED;
-}
void ReplicationCoordinatorEmbedded::appendDiagnosticBSON(mongo::BSONObjBuilder*) {
UASSERT_NOT_IMPLEMENTED;
}
diff --git a/src/mongo/embedded/replication_coordinator_embedded.h b/src/mongo/embedded/replication_coordinator_embedded.h
index 6e6923d52f4..3edb3dac0ae 100644
--- a/src/mongo/embedded/replication_coordinator_embedded.h
+++ b/src/mongo/embedded/replication_coordinator_embedded.h
@@ -249,8 +249,6 @@ public:
repl::OpTime getCurrentCommittedSnapshotOpTime() const override;
- repl::OpTimeAndWallTime getCurrentCommittedSnapshotOpTimeAndWallTime() const override;
-
void waitUntilSnapshotCommitted(OperationContext*, const Timestamp&) override;
void appendDiagnosticBSON(BSONObjBuilder*) override;