summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Redman <joel.redman@mongodb.com>2022-10-21 18:44:43 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-10-21 19:17:31 +0000
commitaeccd083729344c5be835bb56fc01855b844703e (patch)
treebb05a03410558ec365f6e392f7034e2c7cef7ed8
parent7abc7558e54367f26f4df0cad8b5ce527d72a7c6 (diff)
downloadmongo-aeccd083729344c5be835bb56fc01855b844703e.tar.gz
SERVER-70747 Change coll name in BUS extended range test
-rw-r--r--jstests/core/timeseries/bucket_unpacking_with_sort_extended_range.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/jstests/core/timeseries/bucket_unpacking_with_sort_extended_range.js b/jstests/core/timeseries/bucket_unpacking_with_sort_extended_range.js
index 9bf6cd31233..34ebdaa1254 100644
--- a/jstests/core/timeseries/bucket_unpacking_with_sort_extended_range.js
+++ b/jstests/core/timeseries/bucket_unpacking_with_sort_extended_range.js
@@ -32,16 +32,15 @@ if (!TimeseriesTest.bucketUnpackWithSortEnabled(db.getMongo())) {
const timeFieldName = "t";
// Create unindexed collection
-const coll = db.timeseries_internal_bounded_sort;
+const coll = db.timeseries_internal_bounded_sort_extended_range;
const buckets = db['system.buckets.' + coll.getName()];
coll.drop();
assert.commandWorked(db.createCollection(coll.getName(), {timeseries: {timeField: 't'}}));
// Create collection indexed on time
-const collIndexed = db.timeseries_internal_bounded_sort_with_index;
+const collIndexed = db.timeseries_internal_bounded_sort_extended_range_with_index;
const bucketsIndexed = db['system.buckets.' + collIndexed.getName()];
collIndexed.drop();
-
assert.commandWorked(db.createCollection(collIndexed.getName(), {timeseries: {timeField: 't'}}));
assert.commandWorked(collIndexed.createIndex({'t': 1}));