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

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

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

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