mirror of
https://github.com/isar/libmdbx.git
synced 2025-01-04 17:44:13 +08:00
mdbx-doc: import - GET_MULTIPLE etc don't return the key (ITS#8908).
Unnecessary since these are DUPs, the key will always be the same
This commit is contained in:
parent
0b870648af
commit
d56c9a881e
12
mdbx.h
12
mdbx.h
@ -364,17 +364,17 @@ typedef enum MDBX_cursor_op {
|
||||
MDBX_GET_BOTH, /* MDBX_DUPSORT-only: Position at key/data pair. */
|
||||
MDBX_GET_BOTH_RANGE, /* MDBX_DUPSORT-only: position at key, nearest data. */
|
||||
MDBX_GET_CURRENT, /* Return key/data at current cursor position */
|
||||
MDBX_GET_MULTIPLE, /* MDBX_DUPFIXED-only: Return key and up to a page of
|
||||
* duplicate data items from current cursor position.
|
||||
* Move cursor to prepare for MDBX_NEXT_MULTIPLE.*/
|
||||
MDBX_GET_MULTIPLE, /* MDBX_DUPFIXED-only: Return up to a page of duplicate
|
||||
* data items from current cursor position.
|
||||
* Move cursor to prepare for MDBX_NEXT_MULTIPLE. */
|
||||
MDBX_LAST, /* Position at last key/data item */
|
||||
MDBX_LAST_DUP, /* MDBX_DUPSORT-only: Position at last data item
|
||||
* of current key. */
|
||||
MDBX_NEXT, /* Position at next data item */
|
||||
MDBX_NEXT_DUP, /* MDBX_DUPSORT-only: Position at next data item
|
||||
* of current key. */
|
||||
MDBX_NEXT_MULTIPLE, /* MDBX_DUPFIXED-only: Return key and up to a page of
|
||||
* duplicate data items from next cursor position.
|
||||
MDBX_NEXT_MULTIPLE, /* MDBX_DUPFIXED-only: Return up to a page of duplicate
|
||||
* data items from next cursor position.
|
||||
* Move cursor to prepare for MDBX_NEXT_MULTIPLE. */
|
||||
MDBX_NEXT_NODUP, /* Position at first data item of next key */
|
||||
MDBX_PREV, /* Position at previous data item */
|
||||
@ -386,7 +386,7 @@ typedef enum MDBX_cursor_op {
|
||||
MDBX_SET_RANGE, /* Position at first key greater than or equal to
|
||||
* specified key. */
|
||||
MDBX_PREV_MULTIPLE /* MDBX_DUPFIXED-only: Position at previous page and
|
||||
* return key and up to a page of duplicate data items. */
|
||||
* return up to a page of duplicate data items. */
|
||||
} MDBX_cursor_op;
|
||||
|
||||
/* Return Codes
|
||||
|
Loading…
x
Reference in New Issue
Block a user