summaryrefslogtreecommitdiff
path: root/src/btree/bt_curprev.c
Commit message (Expand)AuthorAgeFilesLines
* Move the append array out of the last page into the WT_BTREE structure: it'sKeith Bostic2011-12-281-1/+2
* Split u.col_leaf into two parts (u.col_fix and u.col_var), and move theKeith Bostic2011-12-181-2/+2
* Expand "illegal-format" to include "bad value" (we use it in placesKeith Bostic2011-12-051-1/+1
* Change the row-store leaf-page binary search code to use keys from the diskKeith Bostic2011-11-101-0/+9
* Make cursor->prev use "skip list fingers" to run in O(log N) time rather than...Michael Cahill2011-10-051-34/+113
* I was using the cbt->vslot value to decide if I needed to switch to aKeith Bostic2011-09-241-33/+8
* Make column-store search function naming match row-store (renameKeith Bostic2011-09-231-2/+2
* Check to see if the new column-store page is empty (it's a brand newKeith Bostic2011-09-221-0/+4
* We can't use a buffer in the WT_BTREE structure as our temporary storage forKeith Bostic2011-09-211-5/+5
* Make reverse iterators on variable-length column stores terminate correctly.Michael Cahill2011-09-151-2/+2
* Don't check page types if we don't have one.Michael Cahill2011-09-151-1/+1
* Set the return key value from the page's append list.Keith Bostic2011-09-151-0/+1
* Change the session->close/sync calls to use the new tree-walk code.Keith Bostic2011-09-131-1/+1
* We have to set the append-list head when switching pages as well, otherwiseKeith Bostic2011-09-111-2/+1
* We have to reset the cached max-record on the page every time we switchKeith Bostic2011-09-111-2/+4
* Column-store files don't have "insert" lists, they have "update" lists.Keith Bostic2011-09-111-4/+4
* Replace column-store page-extension code with a new skiplist, maintainedKeith Bostic2011-09-111-49/+75
* Review/cleanup statistics code:Keith Bostic2011-09-061-1/+7
* Use common routines to clear/set all of the flags (well, almost all of theKeith Bostic2011-09-051-7/+5
* Set the key/value-is-set flags when values are calculated for dependent cursors.Michael Cahill2011-09-021-2/+2
* Don't copy on-page information into the WT_CURSOR_BTREE buffer if it'sKeith Bostic2011-08-311-3/+13
* Don't bother allocating WT_BUF space and/or checking lengths when returningKeith Bostic2011-08-311-4/+2
* Final commit of new cursor code -- prev/next cursor motions now work withKeith Bostic2011-08-311-86/+63
* Intermediate commit of new cursor code. Both prev/next cursor motionsKeith Bostic2011-08-301-39/+74
* Intermediate commit of new cursor code. I can now switch randomlyKeith Bostic2011-08-291-83/+56
* Move the __wt_xxx_np() function into the bt_walk.c file. I don't wantKeith Bostic2011-08-281-1/+1
* Intermediate commit of new cursor code. Both prev/next cursor motionsKeith Bostic2011-08-281-60/+47
* Intermediate commit of new cursor code: this commit has mostly workingKeith Bostic2011-08-261-71/+99
* Don't double-count first/next call statistics.Keith Bostic2011-08-211-3/+3
* Starting to look at cursors: first, review WT_CURSOR_BTREE and commentKeith Bostic2011-08-211-19/+19
* Initial implementation of file prev cursors.Keith Bostic2011-08-101-0/+360