diff options
author | Vesselina Ratcheva <vesselina.ratcheva@10gen.com> | 2018-04-17 15:07:07 -0400 |
---|---|---|
committer | Vesselina Ratcheva <vesselina.ratcheva@10gen.com> | 2018-04-18 11:54:12 -0400 |
commit | 133bf4b4c4517fe52cfda3d3fdbad960eb0f64a6 (patch) | |
tree | befa08ec2f8213ab7094dc05b1ab49ce0792438c /src/mongo/db/storage/wiredtiger/wiredtiger_util.cpp | |
parent | 18559378f462afe58449db3dda4f9263b74d8d60 (diff) | |
download | mongo-133bf4b4c4517fe52cfda3d3fdbad960eb0f64a6.tar.gz |
SERVER-33348 Remove checkpoint timestamp collection
Diffstat (limited to 'src/mongo/db/storage/wiredtiger/wiredtiger_util.cpp')
-rw-r--r-- | src/mongo/db/storage/wiredtiger/wiredtiger_util.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/storage/wiredtiger/wiredtiger_util.cpp b/src/mongo/db/storage/wiredtiger/wiredtiger_util.cpp index b9f696975b6..1b05fb124b6 100644 --- a/src/mongo/db/storage/wiredtiger/wiredtiger_util.cpp +++ b/src/mongo/db/storage/wiredtiger/wiredtiger_util.cpp @@ -480,9 +480,9 @@ bool WiredTigerUtil::useTableLogging(NamespaceString ns, bool replEnabled) { return false; } - if (ns.coll() == "replset.checkpointTimestamp" || ns.coll() == "replset.minvalid") { - // Of local collections, these two are derived from the state of the data and therefore - // are not logged. + if (ns.coll() == "replset.minvalid") { + // Of local collections, this is derived from the state of the data and therefore + // not logged. return false; } |