summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/mobile
diff options
context:
space:
mode:
authorJason Chan <jason.chan@mongodb.com>2018-11-29 13:09:06 -0500
committerJason Chan <jason.chan@mongodb.com>2018-11-29 13:12:06 -0500
commit35f465029fdccee1a3b7e3b8fb91a2ea75b9aca7 (patch)
treee69b8e0408467282931ca0efdc14bb24822352c8 /src/mongo/db/storage/mobile
parentca1cccb8a18be76c584f587e04b14512e59d8424 (diff)
downloadmongo-35f465029fdccee1a3b7e3b8fb91a2ea75b9aca7.tar.gz
SERVER-35449 Return the oldest read timestamp used by any open transaction
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 a644d6db4b0..716b2f97d74 100644
--- a/src/mongo/db/storage/mobile/mobile_kv_engine.h
+++ b/src/mongo/db/storage/mobile/mobile_kv_engine.h
@@ -129,6 +129,10 @@ public:
MONGO_UNREACHABLE;
}
+ virtual Timestamp getOldestOpenReadTimestamp() const override {
+ MONGO_UNREACHABLE;
+ }
+
private:
mutable stdx::mutex _mutex;
void _initDBPath(const std::string& path);