From 70a138472b1ba6a9307fade117375b084a444997 Mon Sep 17 00:00:00 2001 From: Hallvard Furuseth Date: Thu, 15 Dec 2016 22:12:45 +0100 Subject: [PATCH] mdbx: backport - Mention MDB_PREV_MULTIPLE along with MDB_NEXT_MULTIPLE. Change-Id: I0c216203c3aa2005ef254293c1c472c9b7f257f3 --- lmdb.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lmdb.h b/lmdb.h index 52abd372..d0b8b37c 100644 --- a/lmdb.h +++ b/lmdb.h @@ -1149,8 +1149,9 @@ int mdb_txn_renew(MDB_txn *txn); * This flag may only be used in combination with #MDB_DUPSORT. This option * tells the library that the data items for this database are all the same * size, which allows further optimizations in storage and retrieval. When - * all data items are the same size, the #MDB_GET_MULTIPLE and #MDB_NEXT_MULTIPLE - * cursor operations may be used to retrieve multiple items at once. + * all data items are the same size, the #MDB_GET_MULTIPLE, #MDB_NEXT_MULTIPLE + * and #MDB_PREV_MULTIPLE cursor operations may be used to retrieve multiple + * items at once. *
  • #MDB_INTEGERDUP * This option specifies that duplicate data items are binary integers, * similar to #MDB_INTEGERKEY keys.