Skip to content

Commit

Permalink
Merge pull request #14 from wojas/upgrade-lmdb-0-9-31
Browse files Browse the repository at this point in the history
Upgrade LMDB to 0.9.31
  • Loading branch information
wojas authored Sep 14, 2023
2 parents 3dbfafc + 7e6bccf commit 81e585c
Show file tree
Hide file tree
Showing 3 changed files with 116 additions and 72 deletions.
10 changes: 10 additions & 0 deletions CHANGES.lmdb.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
LMDB 0.9 Change Log

LMDB 0.9.31 Release (2023/07/10)
ITS#8447 - Fix cursor_put(MDB_CURRENT) on DUPSORT DB with different sized data

LMDB 0.9.30 Release (2023/02/08)
ITS#9806 - LMDB page_split: key threshold depends on page size
ITS#9916 - avoid gcc optimization bug on sparc64 linux
ITS#9919 - Mark infrequently used functions as cold
ITS#9723 - clear C_EOF on cursor with MDB_FIRST_DUP
ITS#9030 - Use sys/cachectl.h rather than asm/cachectl.h on mips

LMDB 0.9.29 Release (2021/03/16)
ITS#9461 refix ITS#9376
ITS#9500 fix regression from ITS#8662
Expand Down
4 changes: 2 additions & 2 deletions lmdb/lmdb.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ typedef int mdb_filehandle_t;
/** Library minor version */
#define MDB_VERSION_MINOR 9
/** Library patch version */
#define MDB_VERSION_PATCH 29
#define MDB_VERSION_PATCH 31

/** Combine args a,b,c into a single integer for easy version comparisons */
#define MDB_VERINT(a,b,c) (((a) << 24) | ((b) << 16) | (c))
Expand All @@ -210,7 +210,7 @@ typedef int mdb_filehandle_t;
MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)

/** The release date of this library version */
#define MDB_VERSION_DATE "March 16, 2021"
#define MDB_VERSION_DATE "July 10, 2023"

/** A stringifier for the version info */
#define MDB_VERSTR(a,b,c,d) "LMDB " #a "." #b "." #c ": (" d ")"
Expand Down
Loading

0 comments on commit 81e585c

Please sign in to comment.