Skip to content

Commit b7803c7

Browse files
pgulutzanlenkis
authored andcommitted
Fixes gh-871 update operations on decimal fields.
(cherry picked from commit 82932ac)
1 parent aec045b commit b7803c7

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

doc/book/box/box_space.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1584,16 +1584,16 @@ Below is a list of all ``box.space`` functions and members.
15841584

15851585
Possible operators are:
15861586

1587-
* ``+`` for addition (values must be numeric)
1588-
* ``-`` for subtraction (values must be numeric)
1589-
* ``&`` for bitwise AND (values must be unsigned numeric)
1590-
* ``|`` for bitwise OR (values must be unsigned numeric)
1591-
* ``^`` for bitwise :abbr:`XOR(exclusive OR)` (values must be
1592-
unsigned numeric)
1593-
* ``:`` for string splice
1594-
* ``!`` for insertion
1595-
* ``#`` for deletion
1596-
* ``=`` for assignment
1587+
* ``+`` for addition. values must be numeric, e.g. unsigned or decimal
1588+
* ``-`` for subtraction. values must be numeric
1589+
* ``&`` for bitwise AND. values must be unsigned numeric
1590+
* ``|`` for bitwise OR. values must be unsigned numeric
1591+
* ``^`` for bitwise :abbr:`XOR(exclusive OR)`. values must be
1592+
unsigned numeric
1593+
* ``:`` for string splice.
1594+
* ``!`` for insertion of a new field.
1595+
* ``#`` for deletion.
1596+
* ``=`` for assignment.
15971597

15981598
For ``!`` and ``=`` operations the field number can be ``-1``, meaning
15991599
the last field in the tuple.

0 commit comments

Comments
 (0)