Verification of the use-cases corresponding to MDB_REVERSEKEY
and MDB_REVERSEDUP
DB flags enabled
#6
Labels
good first issue
Good for newcomers
hacktoberfest
Issue participates in hacktoberfest
task
Issue is a task
LMDB flags
MDB_REVERSEKEY
andMDB_REVERSEDUP
specify that keys and values are compared (not sorted) in reverse order (from last byte to to the first). Propertyreversed_flag
can be specified to bestd::true_type
in key or value trait to propagate corresponding flags into lmdb database settings (functionality is already implemented);It is required to verify the behaviour by integration tests:
std::string
with thereversed_flag
;The text was updated successfully, but these errors were encountered: