-
Type: Bug
-
Resolution: Done
-
Priority: Major - P3
-
Affects Version/s: 1.6.2
-
Component/s: None
-
None
-
Environment:Windows + Linux
-
ALL
To reproduce the bug, I run these 3 commands:
db.bugtest.insert(
{ _id: ObjectId("4c8d156f6709000000001176")});
db.bugtest.update(
, { $set:
{ "babca304b2c79a6801200000": "Test 01" } });
db.bugtest.update(
, { $set:
{ "babca304b2c79a6801210000": "Test 02" }});
I expect this object:
{ _id: ObjectId("4c8d156f6709000000001176"), "babca304b2c79a6801200000": "Test 01", "babca304b2c79a6801210000": "Test 02"}Instead, "babca304b2c79a6801200000": "Test 01" is missing:
{ "_id" : ObjectId("4c8d156f6709000000001176"), "babca304b2c79a6801210000" : "Test 02" }- is related to
-
SERVER-1347 Using $set with large integer
- Closed