diff options
author | Abdul Qadeer <abdul.qadeer@mongodb.com> | 2022-06-14 21:15:42 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-06-14 22:05:04 +0000 |
commit | 01eb71cdb1ec643de2dacf439814e46b6ca0650b (patch) | |
tree | d1be5baa3775b505a276ca2d8ef98dc8b27fcd8c /src/mongo/db/pipeline | |
parent | 731cfef274177f5a2df4b5d700ae6d62a4e54abe (diff) | |
download | mongo-01eb71cdb1ec643de2dacf439814e46b6ca0650b.tar.gz |
SERVER-50729 Wrap resharding_util in resharding namespace
Diffstat (limited to 'src/mongo/db/pipeline')
-rw-r--r-- | src/mongo/db/pipeline/document_source_change_stream_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/pipeline/document_source_change_stream_test.cpp b/src/mongo/db/pipeline/document_source_change_stream_test.cpp index fcd7c965b37..bc1707620e4 100644 --- a/src/mongo/db/pipeline/document_source_change_stream_test.cpp +++ b/src/mongo/db/pipeline/document_source_change_stream_test.cpp @@ -1421,7 +1421,7 @@ TEST_F(ChangeStreamStageTest, TransformReshardBegin) { TEST_F(ChangeStreamStageTest, TransformReshardDoneCatchUpLegacyFormat) { auto existingUuid = UUID::gen(); auto reshardingUuid = UUID::gen(); - auto temporaryNs = constructTemporaryReshardingNss(nss.db(), existingUuid); + auto temporaryNs = resharding::constructTemporaryReshardingNss(nss.db(), existingUuid); const auto o2FieldInLegacyFormat = BSON("type" << "reshardDoneCatchUp" @@ -1460,7 +1460,7 @@ TEST_F(ChangeStreamStageTest, TransformReshardDoneCatchUpLegacyFormat) { TEST_F(ChangeStreamStageTest, TransformReshardDoneCatchUp) { auto existingUuid = UUID::gen(); auto reshardingUuid = UUID::gen(); - auto temporaryNs = constructTemporaryReshardingNss(nss.db(), existingUuid); + auto temporaryNs = resharding::constructTemporaryReshardingNss(nss.db(), existingUuid); ReshardDoneCatchUpChangeEventO2Field o2Field{temporaryNs, reshardingUuid}; auto reshardDoneCatchUp = makeOplogEntry(OpTypeEnum::kNoop, |