SERVER-112059 Adapt leftover readonly test for viewless timeseries (#43941)

GitOrigin-RevId: 4b3dd92c8ac9caabf4935a99e113ff5cb589507b
This commit is contained in:
Pierlauro Sciarelli 2025-11-17 15:50:16 +01:00 committed by MongoDB Bot
parent f84c0d5ce5
commit 34e48a9658
1 changed files with 2 additions and 2 deletions

View File

@ -4,6 +4,7 @@
* featureFlagCreateViewlessTimeseriesCollections_incompatible,
* ]
*/
import {getTimeseriesCollForDDLOps} from "jstests/core/timeseries/libs/viewless_timeseries_util.js";
import {runReadOnlyTest} from "jstests/readonly/lib/read_only_test.js";
runReadOnlyTest(
@ -13,7 +14,6 @@ runReadOnlyTest(
collectionNames: ["foo", "bar", "baz", "garply"],
tsCollectionName: "tsColl",
tsBucketsCollectionName: "system.buckets.tsColl",
indexSpecs: [{a: 1}, {a: 1, b: -1}, {a: 1, b: 1, c: -1}],
load: function (writableCollection) {
@ -34,7 +34,7 @@ runReadOnlyTest(
db.createCollection(this.tsCollectionName, {timeseries: {timeField: "time", metaField: "meta"}}),
);
this.collectionNames.push(this.tsCollectionName, this.tsBucketsCollectionName);
this.collectionNames.push(this.tsCollectionName, getTimeseriesCollForDDLOps(db, this.tsCollectionName));
// Create some indexes so we can verify that listIndexes works in read-only mode.
for (let indexSpec of this.indexSpecs) {