summaryrefslogtreecommitdiff
path: root/jstests/core/updatek.js
blob: 1af9e6112e7ee99baa2f621bdc7d69646170a422 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Test modifier operations on numerically equivalent string field names.  SERVER-4776

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());