- Sep 23, 2013
-
-
Hallvard Furuseth authored
MDB_txn.mt_toggle: Use (mt_txnid & 1) instead. Drop error checks which will be repeated. mdb_cursor_set(): Turn assert into if/return to match the above. mdb_cursor_del(): 'flags' are now used as bitflags.
-
Hallvard Furuseth authored
Only named DBs can have DB_STALE, and they do not use MDB_PS_MODIFY. Replace magic key values with flags. Drop duplicated comments at mdb_page_search_root() vs. mdb_page_search(), and rephrase.
-
Hallvard Furuseth authored
-
Hallvard Furuseth authored
Happened since sqlightning #includes mdb.c, midl.c.
-
Hallvard Furuseth authored
The names have caused bugs, "txn" was treated as the current transaction.
-
Hallvard Furuseth authored
Malloc a page in this txn, not in a parent.
-
Hallvard Furuseth authored
Catch malloc error. Fix hunt for dirty vs spilled pages: Don't leave x at a deleted pageno. Cleanup: Factor out variables, squash pages already marked for deletion.
-
Hallvard Furuseth authored
Fix description & code: Also ignore dirty pages hidden by spilled pages, as they won't merge into our dirty_list. Update it in mdb_page_flush() instead of mdb_page_spill().
-
Hallvard Furuseth authored
Don't prod sub-pages or pages referring to uninitialized xcursors.
-
Hallvard Furuseth authored
-
Hallvard Furuseth authored
-
Hallvard Furuseth authored
Use fcntl() to set the flag. Linux open(,O_DIRECT...) can create the file even on failure, if the filesystem lacks O_DIRECT support.
-
- Sep 21, 2013
-
-
Howard Chu authored
Set rc=0 when taking the SET_RANGE branch
-
Howard Chu authored
Must copy tmp cursor back to real cursor when merging into tmp cursor.
-
- Sep 09, 2013
-
-
Howard Chu authored
-
- Sep 05, 2013
-
-
Howard Chu authored
-
Salvador Ortiz authored
-
Howard Chu authored
Reset delete flag in cursor_put().
-
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
-