Files
mongo/jstests/core/query/dbref_upsert.js
Enrico Golfieri 92fc7e9ad4 SERVER-115731 Deploy 3 mongos for the remaining sharding_jscore_passthrough_* suites (#46877)
GitOrigin-RevId: 801504c951222e7260a2023cc0bf684b9e99e961
2026-02-04 17:37:09 +00:00

25 lines
979 B
JavaScript

// {multi: true} upsert requires specifying the full shard key.
// @tags: [assumes_unsharded_collection, requires_multi_updates, requires_non_retryable_writes]
// TODO (SERVER-117130): Remove the mongos pinning once the related issue is resolved.
// When a database is dropped, a stale router will report "database not found" error for
// deletes (instead of "ok") when pauseMigrationsDuringMultiUpdates is enabled.
if (TestData.pauseMigrationsDuringMultiUpdates) {
TestData.pinToSingleMongos = true;
}
let t = db[jsTestName()];
t.drop();
let q = {"name": "first", "pic": {"$ref": "foo", "$id": ObjectId("4c48d04cd33a5a92628c9af6")}};
t.update(q, {$set: {x: 1}}, true, true);
let ref = t.findOne().pic;
assert.eq("object", typeof ref);
assert.eq(q.pic["$ref"], ref["$ref"]);
assert.eq(q.pic["$id"], ref["$id"]);
// just make we haven't broken other update operators
t.drop();
t.update({_id: 1, x: {$gt: 5}}, {$set: {y: 1}}, true);
assert.eq({_id: 1, y: 1}, t.findOne());