summaryrefslogtreecommitdiff
path: root/jstests/multiVersion/genericSetFCVUsage/rename_across_dbs_last_stable_primary_drop_target.js
blob: a1e5869800de471016d2c6f2a16778564c181d44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(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,
    dropTarget: true,
};

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