mirror of
https://github.com/isar/libmdbx.git
synced 2024-10-29 23:19:20 +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. */
|
||||
MDBX_DUPSORT = UINT32_C(0x04),
|
||||
|
||||
/** Numeric keys in native byte order either uint32_t or uint64_t. The keys
|
||||
* must all be of the same size and must be aligned while passing as
|
||||
/** Numeric keys in native byte order either uint32_t or uint64_t
|
||||
* (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. */
|
||||
MDBX_INTEGERKEY = UINT32_C(0x08),
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user