summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/type_shard_collection.cpp
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2022-01-20 09:20:51 +0100
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-01-24 14:44:28 +0000
commit3ce4e1938871cfa86599cf37c871542a7f4ca4c4 (patch)
treef659eb8120daa83b8b21ca25ffee25704474b171 /src/mongo/db/s/type_shard_collection.cpp
parent14c6f826f2d54a9d6928009be3627bff948ceb39 (diff)
downloadmongo-3ce4e1938871cfa86599cf37c871542a7f4ca4c4.tar.gz
SERVER-62783 Move the version parsing for ShardCollectionType out of ChunkVersion
Diffstat (limited to 'src/mongo/db/s/type_shard_collection.cpp')
-rw-r--r--src/mongo/db/s/type_shard_collection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/s/type_shard_collection.cpp b/src/mongo/db/s/type_shard_collection.cpp
index 66ab2759fbb..6033510b6d3 100644
--- a/src/mongo/db/s/type_shard_collection.cpp
+++ b/src/mongo/db/s/type_shard_collection.cpp
@@ -35,13 +35,13 @@ namespace mongo {
ShardCollectionType::ShardCollectionType(NamespaceString nss,
OID epoch,
- Timestamp creationTime,
+ Timestamp timestamp,
UUID uuid,
KeyPattern keyPattern,
bool unique)
: ShardCollectionTypeBase(std::move(nss),
std::move(epoch),
- std::move(creationTime),
+ std::move(timestamp),
std::move(uuid),
std::move(keyPattern),
unique) {}