mirror of
https://github.com/isar/libmdbx.git
synced 2025-01-10 17:04:12 +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
de44ecccd1
commit
02276500c9
10
mdbx.h
10
mdbx.h
@ -344,8 +344,8 @@ typedef enum MDBX_cursor_op {
|
|||||||
MDBX_GET_BOTH, /* MDBX_DUPSORT-only: Position at key/data pair. */
|
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_BOTH_RANGE, /* MDBX_DUPSORT-only: position at key, nearest data. */
|
||||||
MDBX_GET_CURRENT, /* Return key/data at current cursor position */
|
MDBX_GET_CURRENT, /* Return key/data at current cursor position */
|
||||||
MDBX_GET_MULTIPLE, /* MDBX_DUPFIXED-only: Return key and up to a page of
|
MDBX_GET_MULTIPLE, /* MDBX_DUPFIXED-only: Return up to a page of duplicate
|
||||||
* duplicate data items from current cursor position.
|
* data items from current cursor position.
|
||||||
* Move cursor to prepare for MDBX_NEXT_MULTIPLE. */
|
* Move cursor to prepare for MDBX_NEXT_MULTIPLE. */
|
||||||
MDBX_LAST, /* Position at last key/data item */
|
MDBX_LAST, /* Position at last key/data item */
|
||||||
MDBX_LAST_DUP, /* MDBX_DUPSORT-only: Position at last data item
|
MDBX_LAST_DUP, /* MDBX_DUPSORT-only: Position at last data item
|
||||||
@ -353,8 +353,8 @@ typedef enum MDBX_cursor_op {
|
|||||||
MDBX_NEXT, /* Position at next data item */
|
MDBX_NEXT, /* Position at next data item */
|
||||||
MDBX_NEXT_DUP, /* MDBX_DUPSORT-only: Position at next data item
|
MDBX_NEXT_DUP, /* MDBX_DUPSORT-only: Position at next data item
|
||||||
* of current key. */
|
* of current key. */
|
||||||
MDBX_NEXT_MULTIPLE, /* MDBX_DUPFIXED-only: Return key and up to a page of
|
MDBX_NEXT_MULTIPLE, /* MDBX_DUPFIXED-only: Return up to a page of duplicate
|
||||||
* duplicate data items from next cursor position.
|
* data items from next cursor position.
|
||||||
* Move cursor to prepare for MDBX_NEXT_MULTIPLE. */
|
* Move cursor to prepare for MDBX_NEXT_MULTIPLE. */
|
||||||
MDBX_NEXT_NODUP, /* Position at first data item of next key */
|
MDBX_NEXT_NODUP, /* Position at first data item of next key */
|
||||||
MDBX_PREV, /* Position at previous data item */
|
MDBX_PREV, /* Position at previous data item */
|
||||||
@ -366,7 +366,7 @@ typedef enum MDBX_cursor_op {
|
|||||||
MDBX_SET_RANGE, /* Position at first key greater than or equal to
|
MDBX_SET_RANGE, /* Position at first key greater than or equal to
|
||||||
* specified key. */
|
* specified key. */
|
||||||
MDBX_PREV_MULTIPLE /* MDBX_DUPFIXED-only: Position at previous page and
|
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;
|
} MDBX_cursor_op;
|
||||||
|
|
||||||
/* Return Codes
|
/* Return Codes
|
||||||
|
Loading…
x
Reference in New Issue
Block a user