Skip to content

Commit 0858bf0

Browse files
authored
Docs 14795 update order numeric when possible (#5898)
* DOCS-14472 update operators act in lexicographic order * DOCS-14795 update order numeric when possible
1 parent 2161554 commit 0858bf0

25 files changed

+84
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Starting in MongoDB 5.0, update operators process document fields with
2+
string-based names in lexicographic order. Fields with numeric names are
3+
processed in numeric order. See :ref:`Update Operators Behavior
4+
<update-operators-processing-order>` for details.

source/reference/operator/update.txt

+24
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,30 @@ Specify the operator expression in a document of the form:
3333
Update Operators
3434
----------------
3535

36+
.. _update-operators-processing-order:
37+
38+
Behavior
39+
~~~~~~~~
40+
41+
Starting in MongoDB 5.0, update operators process document fields with
42+
string-based names in lexicographic order. Fields with numeric names are
43+
processed in numeric order.
44+
45+
In MongoDB 4.4 and earlier, update operators process all document fields
46+
in lexicographic order.
47+
48+
Consider this example :update:`$set` command:
49+
50+
.. code-block:: javascript
51+
52+
{ $set: { "a.2": <new value>, "a.10": <new value>, } }
53+
54+
In MongoDB 5.0 and later, ``"a.2"`` is processed before ``"a.10"``
55+
because ``2`` comes before ``10`` in numeric order.
56+
57+
In MongoDB 4.4 and earlier, ``"a.10"`` is processed before ``"a.2"``
58+
because ``10`` comes before ``2`` in lexicographic order.
59+
3660
Fields
3761
~~~~~~
3862

source/reference/operator/update/addToSet.txt

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ Definition
3030
Behavior
3131
--------
3232

33+
.. include:: /includes/fact-update-operator-processing-order.rst
34+
3335
:update:`$addToSet` only ensures that there are no duplicate items
3436
*added* to the set and does not affect existing duplicate elements.
3537
:update:`$addToSet` does not guarantee a particular ordering of

source/reference/operator/update/bit.txt

+2
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ Behavior
4242

4343
.. include:: /includes/extracts/update-operation-empty-operand-expressions-bit.rst
4444

45+
.. include:: /includes/fact-update-operator-processing-order.rst
46+
4547
Examples
4648
--------
4749

source/reference/operator/update/currentDate.txt

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ Definition
4141
Behavior
4242
--------
4343

44+
.. include:: /includes/fact-update-operator-processing-order.rst
45+
4446
If the field does not exist, :update:`$currentDate` adds the field to a
4547
document.
4648

source/reference/operator/update/each.txt

+5
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ Definition
3737
other modifiers. For a list of modifiers available for
3838
:update:`$push`, see :ref:`push-modifiers`.
3939

40+
Behavior
41+
--------
42+
43+
.. include:: /includes/fact-update-operator-processing-order.rst
44+
4045
Examples
4146
--------
4247

source/reference/operator/update/inc.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,12 @@ Definition
2323
{ $inc: { <field1>: <amount1>, <field2>: <amount2>, ... } }
2424

2525
.. include:: /includes/use-dot-notation.rst
26-
26+
2727
Behavior
2828
--------
2929

30+
.. include:: /includes/fact-update-operator-processing-order.rst
31+
3032
The :update:`$inc` operator accepts positive and negative values.
3133

3234
If the field does not exist, :update:`$inc` creates the field and sets

source/reference/operator/update/max.txt

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ Definition
3232
Behavior
3333
--------
3434

35+
.. include:: /includes/fact-update-operator-processing-order.rst
36+
3537
If the field does not exists, the :update:`$max` operator sets the
3638
field to the specified value.
3739

source/reference/operator/update/min.txt

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ Definition
3030
Behavior
3131
--------
3232

33+
.. include:: /includes/fact-update-operator-processing-order.rst
34+
3335
If the field does not exist, the :update:`$min` operator sets the
3436
field to the specified value.
3537

source/reference/operator/update/mul.txt

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ Behavior
3131

3232
.. include:: /includes/extracts/update-operation-empty-operand-expressions-mul.rst
3333

34+
.. include:: /includes/fact-update-operator-processing-order.rst
35+
3436
Missing Field
3537
~~~~~~~~~~~~~
3638

source/reference/operator/update/pop.txt

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ Definition
3131
Behavior
3232
--------
3333

34+
.. include:: /includes/fact-update-operator-processing-order.rst
35+
3436
The :update:`$pop` operation fails if the ``<field>`` is not an array.
3537

3638
If the :update:`$pop` operator removes the last item in the

source/reference/operator/update/position.txt

+4
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ Definition
5858
greater than or equal to the length of the array, the :update:`$push`
5959
adds elements to the beginning of the array.
6060

61+
Behavior
62+
--------
63+
64+
.. include:: /includes/fact-update-operator-processing-order.rst
6165

6266
Examples
6367
--------

source/reference/operator/update/positional-all.txt

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ Definition
4343
Behavior
4444
--------
4545

46+
.. include:: /includes/fact-update-operator-processing-order.rst
47+
4648
``upsert``
4749
~~~~~~~~~~~
4850

source/reference/operator/update/positional-filtered.txt

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ Definition
5252
Behavior
5353
--------
5454

55+
.. include:: /includes/fact-update-operator-processing-order.rst
56+
5557
``upsert``
5658
~~~~~~~~~~~
5759

source/reference/operator/update/positional.txt

+2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ Definition
5959
Behavior
6060
--------
6161

62+
.. include:: /includes/fact-update-operator-processing-order.rst
63+
6264
``upsert``
6365
~~~~~~~~~~~
6466

source/reference/operator/update/pull.txt

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ $pull
2626
Behavior
2727
--------
2828

29+
.. include:: /includes/fact-update-operator-processing-order.rst
30+
2931
If you specify a ``<condition>`` and the array elements are embedded
3032
documents, :update:`$pull` operator applies the ``<condition>`` as if each
3133
array element were a document in a collection. See

source/reference/operator/update/pullAll.txt

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ Definition
3131
Behavior
3232
--------
3333

34+
.. include:: /includes/fact-update-operator-processing-order.rst
35+
3436
If a ``<value>`` to remove is a document or an array,
3537
:update:`$pullAll` removes only the elements in the array that match
3638
the specified ``<value>`` exactly, including order.

source/reference/operator/update/push.txt

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ Definition
2828
Behavior
2929
---------
3030

31+
.. include:: /includes/fact-update-operator-processing-order.rst
32+
3133
If the field is absent in the document to update, :update:`$push` adds
3234
the array field with the value as its element.
3335

source/reference/operator/update/rename.txt

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ Definition
3737
Behavior
3838
--------
3939

40+
.. include:: /includes/fact-update-operator-processing-order.rst
41+
4042
The :update:`$rename` operator logically performs an :update:`$unset`
4143
of both the old name and the new name, and then performs a
4244
:update:`$set` operation with the new name. As such, the operation may

source/reference/operator/update/set.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ Definition
3232

3333
.. include:: /includes/use-dot-notation.rst
3434

35-
36-
3735
Behavior
3836
--------
3937

38+
.. include:: /includes/fact-update-operator-processing-order.rst
39+
4040
If the field does not exist, :update:`$set` will add a new field with the
4141
specified value, provided that the new field does not violate a type
4242
constraint.

source/reference/operator/update/setOnInsert.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,10 @@ Definition
3838
Behavior
3939
--------
4040

41-
.. include:: /includes/extracts/update-operation-empty-operand-expressions-set-on-insert.rst
41+
.. include:: /includes/fact-update-operator-processing-order.rst
4242

43+
.. include:: /includes/extracts/update-operation-empty-operand-expressions-set-on-insert.rst
44+
4345
Example
4446
-------
4547

source/reference/operator/update/slice.txt

+2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ $slice
5858
Behavior
5959
--------
6060

61+
.. include:: /includes/fact-update-operator-processing-order.rst
62+
6163
The order in which the modifiers appear is immaterial. Previous
6264
versions required the :update:`$each` modifier to appear as the first
6365
modifier if used in conjunction with :update:`$slice`. For a list of

source/reference/operator/update/sort.txt

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ $sort
4747
Behavior
4848
--------
4949

50+
.. include:: /includes/fact-update-operator-processing-order.rst
51+
5052
The :update:`$sort` modifier can sort array elements that are not
5153
documents. In previous versions, the :update:`$sort` modifier required
5254
the array elements be documents.

source/reference/operator/update/unset.txt

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ Definition
3636
Behavior
3737
--------
3838

39+
.. include:: /includes/fact-update-operator-processing-order.rst
40+
3941
If the field does not exist, then :update:`$unset` does nothing (i.e.
4042
no operation).
4143

source/release-notes/5.0-compatibility.txt

+5
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,11 @@ operand expression ( ``{ }`` ):
232232
An empty update results in no changes and no :term:`oplog` entry is
233233
created (meaning that the operation is a no-op).
234234

235+
Update Operator Processing Order
236+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
237+
238+
.. include:: /includes/fact-update-operator-processing-order.rst
239+
235240
Aggregation Pipeline Operator Parameter Limits
236241
----------------------------------------------
237242

0 commit comments

Comments
 (0)