summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/storage_timestamp_tests.cpp
diff options
context:
space:
mode:
authorMoustafa Maher Khalil <m.maher@mongodb.com>2022-01-25 21:43:13 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-01-25 23:10:25 +0000
commitc22bc6aaf0b83ec2a389f75351c527439d1a9611 (patch)
tree6dec2face1c6cd503c60e958360cad9ba83ab1ff /src/mongo/dbtests/storage_timestamp_tests.cpp
parentb2e7614b7aed641b6009ecc4ff1213e5e920cf59 (diff)
downloadmongo-c22bc6aaf0b83ec2a389f75351c527439d1a9611.tar.gz
SERVER-62447 Add collectionUUID parameter to Indexes commands
Diffstat (limited to 'src/mongo/dbtests/storage_timestamp_tests.cpp')
-rw-r--r--src/mongo/dbtests/storage_timestamp_tests.cpp4
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