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>2023-01-31 22:00:24 +0000
commitcff019c9fe824ecfabbfdb35a1051c3f482210da (patch)
tree18b6d2e98a46da4a45b80e37089e1810b3457cf6
parent2b65016588fc5f868b0e396b64d1fe9da916a343 (diff)
downloadmongo-cff019c9fe824ecfabbfdb35a1051c3f482210da.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 7e0d7f2d91f..9f7e846e13c 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}));