summaryrefslogtreecommitdiff
path: root/jstests/core/timeseries/clustered_index_options.js
diff options
context:
space:
mode:
authorLouis Williams <louis.williams@mongodb.com>2021-06-15 10:51:02 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-06-15 15:27:26 +0000
commitaeaf49f3560bc11475d2b57848e50961e6df5789 (patch)
tree6807d93d30f8ba3e1d4a4e17d66be2f3c3601518 /jstests/core/timeseries/clustered_index_options.js
parentb3f9a51989261ed7f52bc5460bcb1a0dbdd62b0c (diff)
downloadmongo-aeaf49f3560bc11475d2b57848e50961e6df5789.tar.gz
SERVER-55664 EphemeralForTest supports clustered _id indexes
Diffstat (limited to 'jstests/core/timeseries/clustered_index_options.js')
-rw-r--r--jstests/core/timeseries/clustered_index_options.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/jstests/core/timeseries/clustered_index_options.js b/jstests/core/timeseries/clustered_index_options.js
index 8bdf755c72a..02e7f7f9ff6 100644
--- a/jstests/core/timeseries/clustered_index_options.js
+++ b/jstests/core/timeseries/clustered_index_options.js
@@ -8,7 +8,6 @@
* assumes_no_implicit_collection_creation_after_drop,
* does_not_support_stepdowns,
* requires_fcv_49,
- * requires_wiredtiger,
* ]
*/
(function() {
@@ -21,12 +20,6 @@ if (!TimeseriesTest.timeseriesCollectionsEnabled(db.getMongo())) {
return;
}
-// Although this test is tagged with 'requires_wiredtiger', this is not sufficient for ensuring that
-// the parallel suite runs this test only on WT configurations.
-if (!TimeseriesTest.supportsClusteredIndexes(db.getMongo())) {
- return;
-}
-
const testDB = db.getSiblingDB(jsTestName());
const tsColl = testDB.clustered_index_options;
const tsCollName = tsColl.getName();
@@ -80,4 +73,4 @@ assert.commandFailedWithCode(testDB.createCollection('test', {expireAfterSeconds
ErrorCodes.InvalidOptions);
assert.commandFailedWithCode(testDB.createCollection(bucketsCollName, {expireAfterSeconds: 10}),
ErrorCodes.InvalidOptions);
-})(); \ No newline at end of file
+})();