summaryrefslogtreecommitdiff
path: root/src/btree/bt_curnext.c
Commit message (Expand)AuthorAgeFilesLines
* Move the append array out of the last page into the WT_BTREE structure: it'sKeith Bostic2011-12-281-2/+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
* Make cursor->prev use "skip list fingers" to run in O(log N) time rather than...Michael Cahill2011-10-051-21/+1
* I was using the cbt->vslot value to decide if I needed to switch to aKeith Bostic2011-09-241-70/+16
* typo.Keith Bostic2011-09-221-1/+1
* Minor comment update.Keith Bostic2011-09-221-1/+4
* 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
* 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-1/+2
* 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/+3
* Column-store files don't have "insert" lists, they have "update" lists.Keith Bostic2011-09-111-6/+6
* Replace column-store page-extension code with a new skiplist, maintainedKeith Bostic2011-09-111-47/+127
* Review/cleanup statistics code:Keith Bostic2011-09-061-1/+7
* If the tree is empty, search_near should fail with WT_NOTFOUND.Michael Cahill2011-09-061-1/+1
* Use common routines to clear/set all of the flags (well, almost all of theKeith Bostic2011-09-051-7/+5
* Update a comment about the twisted use of WT_CURSOR_BTREE->slot in row-storeKeith Bostic2011-09-041-0/+7
* 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
* Minor shuffling for consistency; don't skip to the next insert entry, we doKeith Bostic2011-08-311-4/+1
* Final commit of new cursor code -- prev/next cursor motions now work withKeith Bostic2011-08-311-73/+76
* Intermediate commit of new cursor code. Both prev/next cursor motionsKeith Bostic2011-08-301-27/+52
* Intermediate commit of new cursor code. I can now switch randomlyKeith Bostic2011-08-291-134/+75
* Move the __wt_xxx_np() function into the bt_walk.c file. I don't wantKeith Bostic2011-08-281-93/+1
* Intermediate commit of new cursor code. Both prev/next cursor motionsKeith Bostic2011-08-281-77/+182
* Intermediate commit of new cursor code: this commit has mostly workingKeith Bostic2011-08-261-64/+145
* 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-15/+15
* Initial implementation of file prev cursors.Keith Bostic2011-08-101-0/+321