summaryrefslogtreecommitdiff
path: root/jstests/multiVersion/rename_across_dbs_last_stable_primary.js
blob: 54e654c4dcb01a6ff24919c9028a68fca21c86bc (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();
}());