mdbx-doc: import - mdb_cursor_del does not invalidate the cursor (ITS#8857).

This commit is contained in:
moneromooo-monero 2018-05-15 10:53:13 +01:00 committed by Leonid Yuriev
parent d56c9a881e
commit 2689d0a71f

3
mdbx.h
View File

@ -1481,6 +1481,9 @@ LIBMDBX_API int mdbx_cursor_put(MDBX_cursor *cursor, MDBX_val *key,
/* Delete current key/data pair
*
* This function deletes the key/data pair to which the cursor refers.
* This does not invalidate the cursor, so operations such as MDBX_NEXT
* can still be used on it. Both MDBX_NEXT and MDBX_GET_CURRENT will return
* the same record after this operation.
*
* [in] cursor A cursor handle returned by mdbx_cursor_open()
* [in] flags Options for this operation. This parameter must be set to 0