Remove warning about combining ryw-disabled w/ versionstamped keys

We test this combination now (#3067), and don't know of any reason why
this shouldn't work
This commit is contained in:
Andrew Noyes 2020-05-27 23:52:08 +00:00
parent 96f6d4ce67
commit fbdade0434
4 changed files with 0 additions and 9 deletions

View File

@ -700,8 +700,6 @@ Applications must provide error handling and an appropriate retry loop around th
|atomic-versionstamps-2|
|atomic-set-versionstamped-key-2|
.. warning :: |atomic-versionstamps-tuple-warning-key|
``FDB_MUTATION_TYPE_SET_VERSIONSTAMPED_VALUE``

View File

@ -132,9 +132,6 @@
.. |atomic-set-versionstamped-key-1| replace::
Transforms ``key`` using a versionstamp for the transaction. This key must be at least 14 bytes long. The final 4 bytes will be interpreted as a 32-bit little-endian integer denoting an index into the key at which to perform the transformation, and then trimmed off the key. The 10 bytes in the key beginning at the index will be overwritten with the versionstamp. If the index plus 10 bytes points past the end of the key, the result will be an error. Sets the transformed key in the database to ``param``.
.. |atomic-set-versionstamped-key-2| replace::
This operation is not compatible with |read-your-writes-disable-option| and will generate an error if used with it.
.. |atomic-set-versionstamped-value| replace::
Transforms ``param`` using a versionstamp for the transaction. This parameter must be at least 14 bytes long. The final 4 bytes will be interpreted as a 32-bit little-endian integer denoting an index into the parameter at which to perform the transformation, and then trimmed off the key. The 10 bytes in the parameter beginning at the index will be overwritten with the versionstamp. If the index plus 10 bytes points past the end of the parameter, the result will be an error. Sets ``key`` in the database to the transformed parameter.

View File

@ -678,8 +678,6 @@ In each of the methods below, ``param`` should be a string appropriately packed
|atomic-versionstamps-2|
|atomic-set-versionstamped-key-2|
.. warning :: |atomic-versionstamps-tuple-warning-key|
.. method:: Transaction.set_versionstamped_value(key, param)

View File

@ -627,8 +627,6 @@ In each of the methods below, ``param`` should be a string appropriately packed
|atomic-versionstamps-2|
|atomic-set-versionstamped-key-2|
.. warning :: |atomic-versionstamps-tuple-warning-key|
.. method:: Transaction.set_versionstamped_value(key, param) -> nil