summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/wiredtiger/wiredtiger_util.cpp
diff options
context:
space:
mode:
authorVesselina Ratcheva <vesselina.ratcheva@10gen.com>2018-04-17 15:07:07 -0400
committerVesselina Ratcheva <vesselina.ratcheva@10gen.com>2018-04-18 11:54:12 -0400
commit133bf4b4c4517fe52cfda3d3fdbad960eb0f64a6 (patch)
treebefa08ec2f8213ab7094dc05b1ab49ce0792438c /src/mongo/db/storage/wiredtiger/wiredtiger_util.cpp
parent18559378f462afe58449db3dda4f9263b74d8d60 (diff)
downloadmongo-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.cpp6
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;
}