Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5c012bb
ITS#9068 fix backslash escaping
hyc Aug 26, 2019
0e895ff
ITS#9116 LMDB: fix bogus error check in read-only txns
hyc Nov 10, 2019
a2121bb
ITS#8704 add missing opt flags in prev commit
hyc Nov 10, 2019
c3e6b42
Revert "ITS#9116 LMDB: fix bogus error check in read-only txns"
hyc Nov 10, 2019
522c620
ITS#9118 add MAP_NOSYNC for FreeBSD
hyc Nov 15, 2019
d7b515c
Silence spurious fallthru warning
hyc Nov 15, 2019
b1afa1f
Happy New Year!
quanah Jan 9, 2020
cb256f4
ITS#9155 lmdb: free mt_spill_pgs in non-nested txn on end
hyc Jan 23, 2020
da0527a
ITS#9017 LMDB: improve Windows sync commit perf
kriszyp Feb 19, 2020
147582b
ITS#9017 LMDB: allow using fixed file size on Windows
kriszyp Feb 19, 2020
b77c2ba
ITS#9017 LMDB: fix off_t usage on Windows
hyc Apr 24, 2020
1f02668
ITS#9017 doxygen comment for MDB_FIXEDSIZE
hyc Apr 24, 2020
8d0cbbc
ITS#9017 cleanup Windows off_t
hyc Apr 24, 2020
2fd44e3
ITS#9278 fix robust mutex cleanup for FreeBSD
hyc Jun 16, 2020
a99290f
Fixes for repeated deletes with xcursor
hyc Oct 21, 2020
5b75edb
Happy New Year!
quanah Jan 12, 2021
917e4f1
ITS#9461 refix ITS#9376
hyc Feb 9, 2021
52bc29e
ITS#9461 fix typo
hyc Feb 11, 2021
3464af6
ITS#9469 - Typo fixes
quanah Feb 18, 2021
2d06d7a
ITS#9500 fix regression from ITS#8662
hyc Mar 14, 2021
48a7fed
ITS#9376 simplify
hyc Mar 14, 2021
4b61543
ITS#9496 fix mdb_env_open bug from #8704
hyc Apr 9, 2021
01b1b7d
ITS#9574 add mdb_drop to .gitignore
hyc Jun 7, 2021
55fd54d
ITS#9723 clear C_EOF on cursor with MDB_FIRST_DUP
hyc Oct 25, 2021
45745fc
ITS#9861 fix readonly regression from #9017
hassila Jun 9, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions libraries/liblmdb/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ mdb_copy
mdb_stat
mdb_dump
mdb_load
mdb_drop
*.lo
*.[ao]
*.so
Expand Down
2 changes: 1 addition & 1 deletion libraries/liblmdb/COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2011-2019 Howard Chu, Symas Corp.
Copyright 2011-2021 Howard Chu, Symas Corp.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion libraries/liblmdb/intro.doc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2018 Howard Chu, Symas Corp.
* Copyright 2015-2021 Howard Chu, Symas Corp.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
6 changes: 3 additions & 3 deletions libraries/liblmdb/lmdb.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
*
* @author Howard Chu, Symas Corporation.
*
* @copyright Copyright 2011-2019 Howard Chu, Symas Corp. All rights reserved.
* @copyright Copyright 2011-2021 Howard Chu, Symas Corp. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
Expand Down Expand Up @@ -610,7 +610,7 @@ int mdb_env_create(MDB_env **env);
* <li>#MDB_NOTLS
* Don't use Thread-Local Storage. Tie reader locktable slots to
* #MDB_txn objects instead of to threads. I.e. #mdb_txn_reset() keeps
* the slot reseved for the #MDB_txn object. A thread may use parallel
* the slot reserved for the #MDB_txn object. A thread may use parallel
* read-only transactions. A read-only transaction may span threads if
* the user synchronizes its use. Applications that multiplex many
* user threads over individual OS threads need this option. Such an
Expand Down Expand Up @@ -968,7 +968,7 @@ void *mdb_env_get_userctx(MDB_env *env);
typedef void MDB_assert_func(MDB_env *env, const char *msg);

/** Set or reset the assert() callback of the environment.
* Disabled if liblmdb is buillt with NDEBUG.
* Disabled if liblmdb is built with NDEBUG.
* @note This hack should become obsolete as lmdb's error handling matures.
* @param[in] env An environment handle returned by #mdb_env_create().
* @param[in] func An #MDB_assert_func function, or 0.
Expand Down
Loading