summaryrefslogtreecommitdiff
path: root/jstests/multiVersion/genericSetFCVUsage/rename_across_dbs_last_stable_primary.js
blob: 48e710d330d8312a642750f682add0e6a7056980 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(function() {
'use strict';

load("jstests/libs/feature_compatibility_version.js");
load("jstests/replsets/libs/rename_across_dbs.js");

const nodes = [{binVersion: 'last-stable'}, {binVersion: 'latest'}, {}];
const options = {
    nodes: nodes,
    setFeatureCompatibilityVersion: lastStableFCV,
};

new RenameAcrossDatabasesTest(options).run();
}());