- Sep 05, 2013
-
-
Claude Brisson authored
-
- Sep 03, 2013
-
-
Howard Chu authored
If so, don't advance cursor on next NEXT. Also, init xcursor on the next GET_CURRENT.
-
- Aug 29, 2013
-
-
Howard Chu authored
-
Howard Chu authored
-
Howard Chu authored
The caller is responsible for making sure no transactions are active in this process before resizing. This is slightly lighter weight than doing a full env_close/env_open cycle.
-
- Aug 27, 2013
-
-
Howard Chu authored
Use a txn instead of env argument. Only return persistent flags.
-
- Aug 25, 2013
-
-
Hallvard Furuseth authored
-
- Aug 24, 2013
-
-
Howard Chu authored
-
Howard Chu authored
-
Howard Chu authored
-
- Aug 23, 2013
-
-
Howard Chu authored
-
Howard Chu authored
Always leave cursor pointing at "next" node, if any. Find next sibling if we're already at end of current page.
-
Hallvard Furuseth authored
-
Hallvard Furuseth authored
-
Howard Chu authored
If somehow "need" is larger than the list size, don't try to fake out the dirty list.
-
Howard Chu authored
spilling all possible pages is a waste because the majority will be needed again. Just do 1/8th of the dirty list instead.
-
- Aug 21, 2013
-
-
Howard Chu authored
-
- Aug 14, 2013
-
-
Howard Chu authored
-
Hallvard Furuseth authored
Do not access a long long as an array of longs.
-
- Aug 13, 2013
-
-
Howard Chu authored
For RDONLY, don't get lockfile until we know datafile exists. Also, don't try to create a new datafile for me_mfd if someone deleted it after we got me_fd.
-
Howard Chu authored
This reverts commit 87258384.
-
Howard Chu authored
-
- Aug 12, 2013
-
-
Howard Chu authored
Don't compare cursors beyond their depth. (detected by valgrind)
-
Howard Chu authored
Should allow for the possibility of future flag combos.
-
Howard Chu authored
If a key has a single existing value, and then a put (MDB_MULTIPLE) is done where the first of the multiple values matches the existing value, the put would return SUCCESS without writing any of the values. Fixed to loop to the next value as intended.
-
- Aug 10, 2013
-
-
Howard Chu authored
-
Hallvard Furuseth authored
Use double DPRINTF() parenthesis, so varargs macros are not needed. Parenthesize MDB_DEBUG, in case the user defines it as foo || bar.
-
Hallvard Furuseth authored
-
Hallvard Furuseth authored
Also check xcursor instead of DUPSORT, it's slightly briefer.
-
John Hewson authored
-
Salvador Ortiz authored
-
Hallvard Furuseth authored
Checking dirty_list was insufficient after a spill with no named databases and no positioned cursors.
-
-
- Aug 09, 2013
-
-
Salvador Ortiz authored
-
Howard Chu authored
-
Hallvard Furuseth authored
Return EINVAL only for simple programmer errors.
-
Hallvard Furuseth authored
-
- Aug 08, 2013
-
-
Hallvard Furuseth authored
Ignore parent txn cursors since it is the current txn's dirty_list which will be flushed. But check the current txn also when clearing, since cursors can have pages which are dirty in a parent. Check !mc_xcursor instead of !MDB_DUPSORT. Equivalent for valid data, but a bit safer if the sub-DB flags are corrupt.
-
Hallvard Furuseth authored
Ensure me_pghead has room before removing from spill/dirty list. Don't return pages to me_pghead in nested txns, use mt_free_pgs.
-
Hallvard Furuseth authored
mdb_page_spill(): Don't binary-search the unsorted dirty_list. mdb_page_flush(): Don't overwrite unprocessed dirty_list items.
-