即使没有文档匹配,Mongodb也会通过验证

时间:2019-11-22 18:17:27

标签: mongodb nosql mongo-shell mongodb-update

使用mongo shell,我可以找到一个文档。

但是,在进行无操作更新时,没有文档匹配,并且由于某种原因,某个地方的文档也无法通过验证。

那怎么可能?可能会发生什么?我想念什么吗?

> db.synchronousEvents.count({_id: ObjectId('5dd82343a23aa2b0d5a147cf')})
1
> db.synchronousEvents.update({_id: ObjectId('5dd82343a23aa2b0d5a147cf')}, {})
WriteResult({
    "nMatched" : 0,
    "nUpserted" : 0,
    "nModified" : 0,
    "writeError" : {
        "code" : 121,
        "errmsg" : "Document failed validation"
    }
})

1 个答案:

答案 0 :(得分:1)

nMatched为0,因为这是任何引发写入的预期行为。

查看测试

//
// Update with error
coll.remove({});
coll.insert({foo: "bar"});
printjson(result = coll.update({foo: "bar"}, {$invalid: "expr"}));
assert.eq(result.nUpserted, 0);
assert.eq(result.nMatched, 0);
if (coll.getMongo().writeMode() == "commands")
    assert.eq(0, result.nModified, tojson(result));
assert(result.getWriteError());
assert(result.getWriteError().errmsg);
assert(!result.getUpsertedId());
assert.eq(coll.count(), 1);

https://github.com/mongodb/mongo/blob/b7ff5816f4d9d468b1875013384e7e51184628a0/jstests/core/write_result.js#L116

由于{}不是集合syncEvents的有效文档,因此引发了写操作。