-
Type: Bug
-
Resolution: Duplicate
-
Priority: Blocker - P1
-
None
-
Affects Version/s: 3.0.8
-
Component/s: Storage
-
None
-
Fully Compatible
-
ALL
-
I've a compound _id that has duplicated entries as shown below.
/* 1 */ { "_id" : { "field1" : 6001, "field2" : 6004, "from" : "ORIGINAL", "field3" : 6006, "field4" : 6002 } } /* 2 */ { "_id" : { "field1" : 6001, "from" : "ORIGINAL", "field2" : 6004, "field3" : 6006, "field4" : 6002 } } /* 3 */ { "_id" : { "field1" : 6001, "field3" : 6006, "from" : "ORIGINAL", "field2" : 6004, "field4" : 6002 } } /* 4 */ { "_id" : { "field1" : 6001, "from" : "ORIGINAL", "field3" : 6006, "field2" : 6004, "field4" : 6002 } }
The only difference is the order of the fields inside. Is this behaviour ok?
- duplicates
-
SERVER-5030 Document equality should be independent of field insertion order
- Backlog