You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently update operations on fields are executed in the order specified by input document, so for example:
{"$set": {"foo" : 1, "bar" : 2}}
would first set value of "foo" and then "bar". Specification mandates ordering to be the opposite.
The most obvious change resulting from this is that in case of adding (setting) new properties, insertion order is changed; for most other aspects it should not significantly change behavior.
The text was updated successfully, but these errors were encountered:
(from #132)
Currently update operations on fields are executed in the order specified by input document, so for example:
would first set value of
"foo"
and then"bar"
. Specification mandates ordering to be the opposite.The most obvious change resulting from this is that in case of adding (setting) new properties, insertion order is changed; for most other aspects it should not significantly change behavior.
The text was updated successfully, but these errors were encountered: