31 lines
885 B
JavaScript
31 lines
885 B
JavaScript
/**
|
|
* Tests update with $where does not wait for write concern (which would trigger assertion while
|
|
* holding global lock) when it iterates system.js collection using DBDirectClient.
|
|
*
|
|
* @tags: [
|
|
* requires_scripting
|
|
* ]
|
|
*/
|
|
|
|
import {ReplSetTest} from "jstests/libs/replsettest.js";
|
|
|
|
const rst = new ReplSetTest({name: jsTestName(), nodes: 2});
|
|
rst.startSet();
|
|
rst.initiate();
|
|
const db = rst.getPrimary().getDB(jsTestName());
|
|
|
|
for (var i = 0; i < 3000; i++) {
|
|
db.system.js.insertOne({
|
|
_id: "test" + i,
|
|
value: function(x) {
|
|
return x;
|
|
}
|
|
});
|
|
}
|
|
assert.commandWorked(db.coll.insertOne({x: 1}));
|
|
assert.commandWorked(db.coll.updateMany({$where: "function() { return test0(this.x) != 0; }"},
|
|
{$set: {x: 2}},
|
|
{writeConcern: {w: "majority"}}));
|
|
|
|
rst.stopSet();
|