summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/mobile
diff options
context:
space:
mode:
authorBenety Goh <benety@mongodb.com>2019-05-22 15:30:27 -0400
committerBenety Goh <benety@mongodb.com>2019-05-22 15:30:40 -0400
commitfabcd95aa7c86f673387fd0143b88013168d71d6 (patch)
treef6789442afb22e94d9d98364de275f06e93651fe /src/mongo/db/storage/mobile
parentfbb03c4cc21c495b6ce360a90a8c6dde57871ad7 (diff)
downloadmongo-fabcd95aa7c86f673387fd0143b88013168d71d6.tar.gz
SERVER-39813 add oldest required timestamp to server status
Diffstat (limited to 'src/mongo/db/storage/mobile')
-rw-r--r--src/mongo/db/storage/mobile/mobile_kv_engine.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mongo/db/storage/mobile/mobile_kv_engine.h b/src/mongo/db/storage/mobile/mobile_kv_engine.h
index 75fa8140cf8..a2e6f7702f1 100644
--- a/src/mongo/db/storage/mobile/mobile_kv_engine.h
+++ b/src/mongo/db/storage/mobile/mobile_kv_engine.h
@@ -136,6 +136,10 @@ public:
return Timestamp();
}
+ boost::optional<Timestamp> getOplogNeededForCrashRecovery() const final {
+ return boost::none;
+ }
+
private:
void maybeVacuum(Client* client, Date_t deadline);