|
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?
|