summaryrefslogtreecommitdiff
path: root/src/mongo/s/catalog_cache_loader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/catalog_cache_loader.h')
-rw-r--r--src/mongo/s/catalog_cache_loader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/s/catalog_cache_loader.h b/src/mongo/s/catalog_cache_loader.h
index 5b60d190afa..fa83d9aef52 100644
--- a/src/mongo/s/catalog_cache_loader.h
+++ b/src/mongo/s/catalog_cache_loader.h
@@ -68,7 +68,7 @@ public:
CollectionAndChangedChunks();
CollectionAndChangedChunks(
OID collEpoch,
- boost::optional<Timestamp> collCreationTime,
+ Timestamp collCreationTime,
UUID uuid,
const BSONObj& collShardKeyPattern,
const BSONObj& collDefaultCollation,
@@ -83,7 +83,7 @@ public:
// Information about the entire collection
OID epoch;
- boost::optional<Timestamp> creationTime;
+ Timestamp creationTime;
boost::optional<UUID> uuid; // This value can never be boost::none,
// except under the default constructor
BSONObj shardKeyPattern;