summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/resharding/resharding_oplog_crud_application_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/s/resharding/resharding_oplog_crud_application_test.cpp')
-rw-r--r--src/mongo/db/s/resharding/resharding_oplog_crud_application_test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/db/s/resharding/resharding_oplog_crud_application_test.cpp b/src/mongo/db/s/resharding/resharding_oplog_crud_application_test.cpp
index 2e81a7be471..3a96cd1672e 100644
--- a/src/mongo/db/s/resharding/resharding_oplog_crud_application_test.cpp
+++ b/src/mongo/db/s/resharding/resharding_oplog_crud_application_test.cpp
@@ -241,16 +241,16 @@ private:
_sourceUUID,
ChunkRange{BSON(_currentShardKey << MINKEY),
BSON(_currentShardKey << -std::numeric_limits<double>::infinity())},
- ChunkVersion(100, 0, epoch, boost::none /* timestamp */),
+ ChunkVersion(100, 0, epoch, Timestamp()),
_myDonorId},
ChunkType{_sourceUUID,
ChunkRange{BSON(_currentShardKey << -std::numeric_limits<double>::infinity()),
BSON(_currentShardKey << 0)},
- ChunkVersion(100, 1, epoch, boost::none /* timestamp */),
+ ChunkVersion(100, 1, epoch, Timestamp()),
_otherDonorId},
ChunkType{_sourceUUID,
ChunkRange{BSON(_currentShardKey << 0), BSON(_currentShardKey << MAXKEY)},
- ChunkVersion(100, 2, epoch, boost::none /* timestamp */),
+ ChunkVersion(100, 2, epoch, Timestamp()),
_myDonorId}};
auto rt = RoutingTableHistory::makeNew(_sourceNss,
@@ -259,7 +259,7 @@ private:
nullptr /* defaultCollator */,
false /* unique */,
std::move(epoch),
- boost::none /* timestamp */,
+ Timestamp(),
boost::none /* timeseriesFields */,
boost::none /* reshardingFields */,
boost::none /* chunkSizeBytes */,