Howard Chu
227329c8e1
Fixes for dbi_open/close, ITS#7515
12 years ago
Howard Chu
6b46799379
ITS#7561 Fix mdb_drop bugs
...
Check for overflow pages, reset cursor position properly.
12 years ago
Howard Chu
8eef7a4275
Fix 6beaad5212
...
In APPEND don't immediately reject matching key, since this
is valid for APPENDDUP.
12 years ago
Howard Chu
6beaad5212
Fix d3990eb2f8
...
Append mode should *reject* keys that are too small.
Also allow APPENDDUP in mdb_put().
12 years ago
Howard Chu
e31d748dbe
Fix rebalance when collapsing root page
...
When fixing other cursors, must also fix their depth.
12 years ago
Howard Chu
cb1cc64831
More fixes for MDB_LAST
...
Make sure C_INITIALIZED gets set on successful call
12 years ago
Howard Chu
3213fc4db7
ITS#7556 fix cursor_sibling for PREV
12 years ago
Hallvard Furuseth
7d643d3acb
Plug MDB memory leak of DB names.
12 years ago
Hallvard Furuseth
ccb7b26916
Silence signedness warning
12 years ago
Hallvard Furuseth
a70b026f6b
Fix MDB_DEBUG compile when no varargs macros.
...
Variables mdb_debug, mdb_debug_start were used undefined.
12 years ago
Howard Chu
30da15a18d
Tweak mode_t def per Hallvard's suggestion
12 years ago
Howard Chu
0c568117ce
MSVC doesn't define mode_t
12 years ago
Howard Chu
7aae15739b
Fix CURSOR_LAST/CURSOR_PREV
12 years ago
Howard Chu
863fa77a08
ITS#7553 better fix
12 years ago
Howard Chu
8a99b00acc
ITS#7553 deinit cursor after deleting last node
12 years ago
Howard Chu
bccbcd1938
Silence stupid warnings
12 years ago
Claude Brisson
bbb27cde4a
bugfix for mdb_cursor_put with MDB_MULTIPLE
...
If the variable dkey.mv_size is non-zero, then it means dkey
contains some original data which has to be put back in the
child db, typically when the child db has just been created.
But when using MDB_MULTIPLE, if this variable has not been
reset to zero, we may come back to this section and wrongly
think that there is some original data to be taken care of.
12 years ago
Howard Chu
77001f549b
ITS#7538 fallout from ITS#7536 fix.
...
Allow leaf pages to have only 1 key.
12 years ago
Howard Chu
3247d7cbd6
Precalculate max size of a node
12 years ago
Howard Chu
8c1d95a438
Fix f97552a83a
...
Causes Bus Error on SPARC
12 years ago
Howard Chu
f80171e079
Check for MADV_RANDOM
...
Android supports madvise but not posix_madvise
12 years ago
Howard Chu
9c4ee82297
ITS#7377 Fix c0f3d9b9a8
...
Add missing parens
12 years ago
Howard Chu
b1da555c4c
Turn off readahead on main mmap
...
It's harmful when the DB is larger than RAM.
12 years ago
Howard Chu
d74330128a
ITS#7536 fix mdb_rebalance
...
A page must always have at least 2 keys (unless it's a root page)
12 years ago
Howard Chu
6dab37f2ac
Use CC/LDFLAGS to link the shared lib
12 years ago
Howard Chu
d8b407d9a2
Install manpages too
12 years ago
Howard Chu
26e4222ffb
Delete obsolete @todo
...
We do it now... (coalescing freelist entries in page_alloc)
12 years ago
Howard Chu
58e27b6c20
Add sample apps for comparison/education purposes
12 years ago
Howard Chu
66c9f03055
Add $(DESTDIR) to make install target
12 years ago
Howard Chu
3394bac2c0
Update error code instances
12 years ago
Hallvard Furuseth
80cd881184
Tweak MDB_INCOMPATIBLE description
12 years ago
Hallvard Furuseth
fbd76c44e4
Tweak prev commit: Restore if-test as an assert
12 years ago
Hallvard Furuseth
208e5c614d
ITS#7515 Fix mdb_txn_commit(nested txn).
...
Don't modify the parent txn until the current txn cannot fail.
Don't assume new dirty child pgnos > dirty parent pgnos.
Page alloc/touch: Fail if child+parent dirty pages would exceed
dirty_list's maxsize. Avoids an error situation in commit.
12 years ago
Hallvard Furuseth
f43ae20be7
ITS#7512 Plug mdb_txn_abort(nested txn) page leaks.
...
Also catch mdb_cursor_shadow() errors.
12 years ago
Hallvard Furuseth
f97552a83a
Check DB flags when refreshing a stale MDB DBI.
...
It's hairy to figure out when a DBI is valid. Catch destructive
user errors, and flags which another process changed under us.
12 years ago
Hallvard Furuseth
2dbb8bb833
mdb_cursor_prev,mdb_cursor_next: Fix return value.
...
Return mdb_node_read()'s return value if it fails, not 1.
(Can happen if mdb_page_get() fails and NDEBUG is #defined.)
12 years ago
Hallvard Furuseth
e4af9ee5da
ITS#7515 mdb_dbi_open(): Also open in parent txns.
...
This makes aborting nested and non-nested txns more
similar: The new DBI is available to the surrounding
context (parent txn and MDB_env respectively).
12 years ago
Hallvard Furuseth
4b67270374
mdb_page_alloc(): Handle freeDB txnid range holes.
...
A txn writes no freeDB entry if previous txn dropped mainDB and a read
txn prevents freelist entry reuse. This surprised mdb_page_alloc (and
mdb_txn_commit too before 65c053a6e7
).
12 years ago
Hallvard Furuseth
f19655eabc
ITS#7517 Document that dirty DBs may not be closed
12 years ago
Hallvard Furuseth
8ad25001ff
ITS#7485 Document key/data size limits in lmdb.h.
...
mdb.c already describes them. The user doc should too.
12 years ago
Hallvard Furuseth
ef25056cfb
Revert "ITS#7515 update parent's mt_next_pgno on child commit"
...
This reverts commit fd4861bf00
.
It duplicated earlier code.
12 years ago
Howard Chu
fd4861bf00
ITS#7515 update parent's mt_next_pgno on child commit
12 years ago
Howard Chu
890f1da3ee
Don't limit retries when coalescing freelist
...
Try to use whatever's available.
12 years ago
Hallvard Furuseth
00d7a96bd5
ITS#7515 Fix MDB parent/child txn interaction.
...
mdb_txn_commit(child): Copy more state. Copy all of mt_dbs:
Include mainDB, and even freeDB since mdb_drop() can update
it. Don't skip DBs with unchanged root, this could break
when the new was newly opened and the old unused junk.
mdb_page_get(): Search parents' dirty lists.
12 years ago
Hallvard Furuseth
d90581fa5a
ITS#7377 Catch MDB failure updating root pointers.
...
"cannot fail" was wrong, it fails at least when exceeding mapsize.
12 years ago
Hallvard Furuseth
c7db955a94
ITS#7517 Don't save dropped dirty MDB databases.
...
mdb_txn_commit's attempt to save the DB could corrupt another DB if
another thread had called mdb_dbi_open and reused the closed DBI.
12 years ago
Hallvard Furuseth
8e1bbdf0dd
mdb_stat -ff[f]: show contiguous page spans.
12 years ago
Hallvard Furuseth
7aba5f5ab9
Add error code MDB_MAP_RESIZED.
12 years ago
Howard Chu
5e59695b8d
Don't memmove freelist entry when chunking it
...
Just advance the pointer, now that it's no longer a complex struct
12 years ago
Hallvard Furuseth
52ecd38e18
ITS#7455 Save freelist in single-page chunks
12 years ago