File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 1
1
LMDB 0.9 Change Log
2
2
3
+ LMDB 0.9.9 Release (2013/10/24)
4
+ Add mdb_env_get_fd()
5
+ Add MDB_NORDAHEAD option
6
+ Add MDB_NOLOCK option
7
+ Avoid wasting space in mdb_page_split() (ITS#7589)
8
+ Fix mdb_page_merge() cursor fixup (ITS#7722)
9
+ Fix mdb_cursor_del() on last delete (ITS#7718)
10
+ Fix adding WRITEMAP on existing env (ITS#7715)
11
+ Fixes for nested txns (ITS#7515)
12
+ Fix mdb_env_copy() O_DIRECT bug (ITS#7682)
13
+ Fix mdb_cursor_set(SET_RANGE) return code (ITS#7681)
14
+ Fix mdb_rebalance() cursor fixup (ITS#7701)
15
+ Misc code cleanup
16
+ Documentation
17
+ Note that by default, readers need write access
18
+
19
+
3
20
LMDB 0.9.8 Release (2013/09/09)
4
21
Allow mdb_env_set_mapsize() on an open environment
5
22
Fix mdb_dbi_flags() (ITS#7672)
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ typedef int mdb_filehandle_t;
174
174
/** Library minor version */
175
175
#define MDB_VERSION_MINOR 9
176
176
/** Library patch version */
177
- #define MDB_VERSION_PATCH 8
177
+ #define MDB_VERSION_PATCH 9
178
178
179
179
/** Combine args a,b,c into a single integer for easy version comparisons */
180
180
#define MDB_VERINT (a ,b ,c ) (((a) << 24) | ((b) << 16) | (c))
@@ -184,7 +184,7 @@ typedef int mdb_filehandle_t;
184
184
MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)
185
185
186
186
/** The release date of this library version */
187
- #define MDB_VERSION_DATE "September 9 , 2013"
187
+ #define MDB_VERSION_DATE "October 24 , 2013"
188
188
189
189
/** A stringifier for the version info */
190
190
#define MDB_VERSTR (a ,b ,c ,d ) "MDB " #a "." #b "." #c ": (" d ")"
You can’t perform that action at this time.
0 commit comments