mirror of https://github.com/mongodb/mongo
17 lines
582 B
JavaScript
17 lines
582 B
JavaScript
// Test that update validation failure terminates the update without modifying subsequent
|
|
// documents. SERVER-4779
|
|
// This test uses a multi-update, which is not retryable. The behavior it is testing is also not
|
|
// true of sharded clusters, since one shard may continue applying updates while the other
|
|
// encounters an error.
|
|
// @tags: [requires_non_retryable_writes, assumes_unsharded_collection]
|
|
|
|
t = db.jstests_updatej;
|
|
t.drop();
|
|
|
|
t.save({a: []});
|
|
t.save({a: 1});
|
|
t.save({a: []});
|
|
|
|
assert.writeError(t.update({}, {$push: {a: 2}}, false, true));
|
|
assert.eq(1, t.count({a: 2}));
|