summaryrefslogtreecommitdiff
path: root/jstests/multiVersion/bit_update_mixed_fcv.js
blob: 53884be32c653f274ead1bf5bd6d82182f383fb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
 * Tests that $bit updates succeed if primaries compare updates numerically and secondaries compare
 * updates lexicographically for array indexes.
 */

(function() {
"use strict";

const rst = new ReplSetTest({
    nodes: 2,
    nodeOptions: {binVersion: "latest"},
});

rst.startSet();
rst.initiate();

let primary = rst.getPrimary();
let testDB = primary.getDB(jsTestName());
let coll = testDB.test;

// assert.commandWorked(testDB.adminCommand({setFeatureCompatibilityVersion: lastLTSFCV}));
testDB.adminCommand({setFeatureCompatibilityVersion: lastLTSFCV});

assert.commandWorked(coll.insert({_id: 0, arr: [0]}));

assert.commandWorked(
    coll.update({_id: 0}, {$bit: {"a.9": {or: NumberInt(0)}, "a.10": {or: NumberInt(0)}}}));

rst.stopSet();
})();