From 58ba039b8f30733ad9456cb3a31f9c459e6e0ffe Mon Sep 17 00:00:00 2001 From: Hallvard Furuseth Date: Sat, 4 Mar 2017 13:03:15 +0100 Subject: [PATCH] ITS#8582 MDB_LOCK_VERSION = 2 due to format change --- libraries/liblmdb/mdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/liblmdb/mdb.c b/libraries/liblmdb/mdb.c index ac381d9e2b..21f50f2a88 100644 --- a/libraries/liblmdb/mdb.c +++ b/libraries/liblmdb/mdb.c @@ -620,7 +620,7 @@ static txnid_t mdb_debug_start; /** The version number for a database's datafile format. */ #define MDB_DATA_VERSION ((MDB_DEVEL) ? 999 : 1) /** The version number for a database's lockfile format. */ -#define MDB_LOCK_VERSION ((MDB_DEVEL) ? 999 : 1) +#define MDB_LOCK_VERSION ((MDB_DEVEL) ? 999 : 2) /** @brief The max size of a key we can write, or 0 for computed max. * -- 2.39.5