0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
mongodb/jstests/parallel/update_serializability2.js
2018-06-25 16:47:18 -04:00

28 lines
769 B
JavaScript

(function() {
"use strict";
var t = db.update_serializability1;
t.drop();
var N = 100000;
var bulk = t.initializeUnorderedBulkOp();
for (var i = 0; i < N; i++) {
bulk.insert({_id: i, a: i, b: N - i, x: 1, y: 1});
}
bulk.execute();
t.ensureIndex({a: 1});
t.ensureIndex({b: 1});
var s1 = startParallelShell(
"db.update_serializability1.update( { a : { $gte : 0 } }, { $set : { x : 2 } }, false, true );");
var s2 = startParallelShell("db.update_serializability1.update( { b : { $lte : " + N +
" } }, { $set : { y : 2 } }, false, true );");
s1();
s2();
// both operations should happen on every document
assert.eq(N, t.find({x: 2, y: 2}).count());
})();