Skip to content
This repository has been archived by the owner on Sep 22, 2022. It is now read-only.

Update mdbx.h : Make the documentation of MDBX_INTEGERKEY clearer #249

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions mdbx.h
Original file line number Diff line number Diff line change
Expand Up @@ -1389,8 +1389,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),

Expand Down