mirror of
https://github.com/isar/libmdbx.git
synced 2025-03-04 17:18:13 +08:00
mdbx: Make the documentation of MDBX_INTEGERKEY
clearer.
Resolves https://github.com/erthink/libmdbx/pull/249.
This commit is contained in:
parent
3fdd810653
commit
45a11f3dc2
6
mdbx.h
6
mdbx.h
@ -1392,8 +1392,10 @@ enum MDBX_db_flags_t {
|
|||||||
/** Use sorted duplicates, i.e. allow multi-values for a keys. */
|
/** Use sorted duplicates, i.e. allow multi-values for a keys. */
|
||||||
MDBX_DUPSORT = UINT32_C(0x04),
|
MDBX_DUPSORT = UINT32_C(0x04),
|
||||||
|
|
||||||
/** Numeric keys in native byte order either uint32_t or uint64_t. The keys
|
/** Numeric keys in native byte order either uint32_t or uint64_t
|
||||||
* must all be of the same size and must be aligned while passing as
|
* (must be one of uint32_t or uint64_t, other integer types, for example,
|
||||||
|
* signed integer or uint16_t will not work).
|
||||||
|
* The keys must all be of the same size and must be aligned while passing as
|
||||||
* arguments. */
|
* arguments. */
|
||||||
MDBX_INTEGERKEY = UINT32_C(0x08),
|
MDBX_INTEGERKEY = UINT32_C(0x08),
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user