summaryrefslogtreecommitdiff
path: root/src/include/cursor.h
AgeCommit message (Expand)Author
2012-01-26Back out the WT_INSERT_HEAD to WT_SKIP_HEAD change: we're not going to useKeith Bostic
2012-01-23Merge WT_BUF into WT_ITEM.Michael Cahill
2012-01-22Update copyright notices to 2012.Keith Bostic
2012-01-19Rename WT_INSERT_HEAD to be WT_SKIP_HEAD, some (but not all) of theKeith Bostic
2012-01-19Rework statistics cursors (issue #135).Keith Bostic
2012-01-02Instead of checking btree->last_recno to figure out if we're past theKeith Bostic
2011-12-03Change the bulk-load code to call the reconciliation code directly.Keith Bostic
2011-11-29The bulk-loaded leaf pages have to have a parent (otherwise they triggerKeith Bostic
2011-11-10Change the row-store leaf-page binary search code to use keys from the diskKeith Bostic
2011-10-21Compare inserted keys during bulk insert to make sure they're notKeith Bostic
2011-10-17Don't guarantee we return -1, 0 or +1 from cursor.search_near. InsteadKeith Bostic
2011-10-11Handle "raw" configuration in dump cursors.Michael Cahill
2011-10-05Make cursor->prev use "skip list fingers" to run in O(log N) time rather than...Michael Cahill
2011-10-07trailing whitespaceKeith Bostic
2011-09-28Fill in the rest of the statistics cursor methods, adding prev, last,Keith Bostic
2011-09-24I was using the cbt->vslot value to decide if I needed to switch to aKeith Bostic
2011-09-21We can't use a buffer in the WT_BTREE structure as our temporary storage forKeith Bostic
2011-09-14Add a rwlock to btree handles, use it to get exclusive access for sync, verif...Michael Cahill
2011-09-11Replace column-store page-extension code with a new skiplist, maintainedKeith Bostic
2011-09-08Fix early exits from API or va_start blocks.Michael Cahill
2011-09-08Add macros to standardize cursors checking whether keys and values are set.Michael Cahill
2011-09-05Make the cursor->search_near method's "exact" argument work.Keith Bostic
2011-08-16Finish implementation of indices -- populate them as the primary is updated, ...Michael Cahill
2011-08-09Turned on GCC "-Wpadded".Michael Cahill
2011-08-18Use size_t for size calculations, only store uint32_t in structs.Michael Cahill
2011-08-31Don't bother allocating WT_BUF space and/or checking lengths when returningKeith Bostic
2011-08-31Now that the cursor iteration code is re-written, We no longer need theKeith Bostic
2011-08-31Final commit of new cursor code -- prev/next cursor motions now work withKeith Bostic
2011-08-30Intermediate commit of new cursor code. Both prev/next cursor motionsKeith Bostic
2011-08-29Intermediate commit of new cursor code. I can now switch randomlyKeith Bostic
2011-08-28Intermediate commit of new cursor code. Both prev/next cursor motionsKeith Bostic
2011-08-26Intermediate commit of new cursor code: this commit has mostly workingKeith Bostic
2011-08-22Comment the hell out of the cursor structure.Keith Bostic
2011-08-21Starting to look at cursors: first, review WT_CURSOR_BTREE and commentKeith Bostic
2011-08-10Initial implementation of file prev cursors.Keith Bostic
2011-07-29Have statistics cursors return field names as keys and use multi-column value...Michael Cahill
2011-07-29Add a "clear" option when closing a statistics cursor.Michael Cahill
2011-07-29Avoid the need for statistics cursor configuration: return two columns so app...Michael Cahill
2011-07-29Move the WT_STAT walk code into the statistics cursor, so we only have one copy.Michael Cahill
2011-07-28Connect the old Btree statistics code to the statistics cursors: if youKeith Bostic
2011-07-26Re-work fixed-length column-store as bitfields, not byte fields.Keith Bostic
2011-07-22Replace wiredtiger_recno_t with uint64_t.Michael Cahill
2011-07-17Write the remaining code for cursor, search insert and reconciliationKeith Bostic
2011-07-11Re-work cursor next calls to handle insert lists in row-store pages. ThisKeith Bostic
2011-07-08Implement projection cursors for tables by using the column list from theMichael Cahill
2011-06-08Add a schema layer, storing configuration information for tables, indices and...Michael Cahill