]> git.sur5r.net Git - openldap/commitdiff
MDB_RESERVE doc
authorHoward Chu <hyc@openldap.org>
Tue, 22 Dec 2015 18:30:41 +0000 (18:30 +0000)
committerHoward Chu <hyc@openldap.org>
Tue, 22 Dec 2015 18:32:37 +0000 (18:32 +0000)
Add mdb_put text to mdb_cursor_put description for people who
fail to draw logical conclusions.

libraries/liblmdb/lmdb.h

index 3ecdc1063cab12da40ea88c7ff2336b94838fa2d..8323af5ec0bd653693f9d541650da89da02f7302 100644 (file)
@@ -1458,7 +1458,8 @@ int  mdb_cursor_get(MDB_cursor *cursor, MDB_val *key, MDB_val *data,
         *              the database supports duplicates (#MDB_DUPSORT).
         *      <li>#MDB_RESERVE - reserve space for data of the given size, but
         *              don't copy the given data. Instead, return a pointer to the
-        *              reserved space, which the caller can fill in later. This saves
+        *              reserved space, which the caller can fill in later - before
+        *              the next update operation or the transaction ends. This saves
         *              an extra memcpy if the data is being generated later. This flag
         *              must not be specified if the database was opened with #MDB_DUPSORT.
         *      <li>#MDB_APPEND - append the given key/data pair to the end of the