diff options
author | Moustafa Maher Khalil <m.maher@mongodb.com> | 2022-01-25 21:43:13 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-01-25 23:10:25 +0000 |
commit | c22bc6aaf0b83ec2a389f75351c527439d1a9611 (patch) | |
tree | 6dec2face1c6cd503c60e958360cad9ba83ab1ff /src/mongo/dbtests | |
parent | b2e7614b7aed641b6009ecc4ff1213e5e920cf59 (diff) | |
download | mongo-c22bc6aaf0b83ec2a389f75351c527439d1a9611.tar.gz |
SERVER-62447 Add collectionUUID parameter to Indexes commands
Diffstat (limited to 'src/mongo/dbtests')
-rw-r--r-- | src/mongo/dbtests/storage_timestamp_tests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/dbtests/storage_timestamp_tests.cpp b/src/mongo/dbtests/storage_timestamp_tests.cpp index 33f4a23b6f8..9622e723b80 100644 --- a/src/mongo/dbtests/storage_timestamp_tests.cpp +++ b/src/mongo/dbtests/storage_timestamp_tests.cpp @@ -2695,7 +2695,7 @@ public: const LogicalTime beforeDropTs = currentTime.clusterTime(); // Drop all of the indexes. - dropIndexes(_opCtx, nss, "*"); + dropIndexes(_opCtx, nss, boost::none, "*"); // Assert that each index is dropped individually and with its own timestamp. The order of // dropping and creating are not guaranteed to be the same, but assert all of the created @@ -2770,7 +2770,7 @@ public: const LogicalTime beforeDropTs = currentTime.clusterTime(); // Drop all of the indexes. - dropIndexes(_opCtx, nss, std::vector<std::string>{"a_1", "b_1", "c_1"}); + dropIndexes(_opCtx, nss, boost::none, std::vector<std::string>{"a_1", "b_1", "c_1"}); // Assert that each index is dropped individually and with its own timestamp. The order of // dropping and creating are not guaranteed to be the same, but assert all of the created |