Files
mongo/jstests/core/write/update/updatek.js
Jason Zhang 28eb8d299b SERVER-80780 Merge writes without shard key jscore passthrough with existing passthrough suites (#20175)
GitOrigin-RevId: a54cc3a3df44359ea51533f062642ee841f71460
2024-04-08 02:28:42 +00:00

14 lines
443 B
JavaScript

// Test modifier operations on numerically equivalent string field names. SERVER-4776
let t = db.jstests_updatek;
t.drop();
t.save({_id: 0, '1': {}, '01': {}});
t.update({}, {$set: {'1.b': 1, '1.c': 2}});
assert.docEq({"01": {}, "1": {"b": 1, "c": 2}, "_id": 0}, t.findOne());
t.drop();
t.save({_id: 0, '1': {}, '01': {}});
t.update({}, {$set: {'1.b': 1, '01.c': 2}});
assert.docEq({"01": {"c": 2}, "1": {"b": 1}, "_id": 0}, t.findOne());