summaryrefslogtreecommitdiff
path: root/jstests/multiVersion/genericSetFCVUsage/rename_across_dbs_last_stable_secondary_drop_target.js
blob: 814fa096f47f85ed078ec7fa02fc460c98b42c1f (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: 'latest'}, {binVersion: 'last-stable'}, {}];
const options = {
    nodes: nodes,
    setFeatureCompatibilityVersion: lastStableFCV,
    dropTarget: true,
};

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