| Commit message (Expand) | Author | Age | Files | Lines |
* | Move the append array out of the last page into the WT_BTREE structure: it's | Keith Bostic | 2011-12-28 | 1 | -4/+6 |
* | Create a per-block structure, WT_BLOCK, and move all of the block-specific | Keith Bostic | 2011-12-27 | 1 | -1/+2 |
* | Do line-buffering when writing debug output to a file, we want to see | Keith Bostic | 2011-12-24 | 1 | -1/+7 |
* | Fix a bug where we couldn't dump split-merge pages. | Keith Bostic | 2011-12-23 | 1 | -9/+12 |
* | Move root addresses into the schema file and add support for the | Keith Bostic | 2011-12-21 | 1 | -37/+0 |
* | Work through the block manager vs. block functions naming: the former are | Keith Bostic | 2011-12-20 | 1 | -1/+1 |
* | Make salvage work with variable-length filesystem address cookies. | Keith Bostic | 2011-12-20 | 1 | -2/+2 |
* | Split u.col_leaf into two parts (u.col_fix and u.col_var), and move the | Keith Bostic | 2011-12-18 | 1 | -3/+5 |
* | Replace WT_OFF/WT_OFF_RECORD structures on row- and column-store internal | Keith Bostic | 2011-12-17 | 1 | -225/+214 |
* | fix some spelling. | Keith Bostic | 2011-12-05 | 1 | -1/+1 |
* | Expand "illegal-format" to include "bad value" (we use it in places | Keith Bostic | 2011-12-05 | 1 | -6/+6 |
* | Simplify a bit of code, we don't need temporary variables or | Keith Bostic | 2011-12-05 | 1 | -14/+6 |
* | Add a routine to dump out the WT_PAGE_MODIFY structure when dumping out | Keith Bostic | 2011-12-05 | 1 | -29/+112 |
* | Change the bulk-load code to call the reconciliation code directly. | Keith Bostic | 2011-12-03 | 1 | -8/+0 |
* | Split WT_PAGE_REC_SPLIT into two cases: WT_PAGE_REC_SPLIT which means | Keith Bostic | 2011-12-02 | 1 | -0/+2 |
* | Rework empty trees: | Keith Bostic | 2011-11-28 | 1 | -2/+0 |
* | Split the reconciliation into reconciliation and eviction pieces, and | Keith Bostic | 2011-11-26 | 1 | -6/+7 |
* | Add a force flag to eviction to block waiting for busy pages. | Michael Cahill | 2011-11-11 | 1 | -2/+4 |
* | Change SESSION->dumpfile to dump the btree file description sector. | Keith Bostic | 2011-11-05 | 1 | -0/+37 |
* | Implement the wiredtiger_open "create" and "exclusive" configuration | Keith Bostic | 2011-10-01 | 1 | -6/+7 |
* | make value output consistent (no colon). | Keith Bostic | 2011-09-24 | 1 | -1/+1 |
* | It's an update list, not an insert list. | Keith Bostic | 2011-09-23 | 1 | -2/+2 |
* | Print out the string "value", instead of "update", for update structures. | Keith Bostic | 2011-09-12 | 1 | -2/+2 |
* | Column-store files don't have "insert" lists, they have "update" lists. | Keith Bostic | 2011-09-11 | 1 | -8/+8 |
* | Replace column-store page-extension code with a new skiplist, maintained | Keith Bostic | 2011-09-11 | 1 | -15/+29 |
* | Mark WT_COL_RLE as "packed" to save 4 bytes in memory per repeated item in va... | Michael Cahill | 2011-08-09 | 1 | -2/+2 |
* | Use "memsize" everywhere, don't mix with "mem_size". | Michael Cahill | 2011-08-18 | 1 | -2/+2 |
* | Use size_t for size calculations, only store uint32_t in structs. | Michael Cahill | 2011-08-18 | 1 | -11/+11 |
* | Display the record number for variable-length column-store entries. | Keith Bostic | 2011-08-31 | 1 | -7/+8 |
* | Intermediate commit of new cursor code. Both prev/next cursor motions | Keith Bostic | 2011-08-30 | 1 | -19/+17 |
* | ANSI C-style free semantics for scratch buffers, caller doesn't have to | Keith Bostic | 2011-08-20 | 1 | -2/+1 |
* | Rename __wt_scr_release -> __wt_scr_free so we have an alloc/free pair, | Keith Bostic | 2011-08-19 | 1 | -3/+3 |
* | strlen() returns a size_t, cast it explicitly. | Keith Bostic | 2011-08-17 | 1 | -2/+2 |
* | If there is a checksum failure during salvage, silently skip the block. | Michael Cahill | 2011-08-17 | 1 | -1/+1 |
* | Move the block allocation and block write code out of btree/ and into | Keith Bostic | 2011-08-16 | 1 | -1/+1 |
* | Move block allocation, stream compression and zeroing out any unused | Keith Bostic | 2011-08-15 | 1 | -1/+1 |
* | Change __wt_debug_addr to allocate a scratch buffer instead of allocating | Keith Bostic | 2011-08-12 | 1 | -12/+5 |
* | Added compression infrastructure, example compressors and tests. | Don Anderson | 2011-08-10 | 1 | -1/+2 |
* | Remove declarations for static inline functions, when mixed with non-inlined ... | Michael Cahill | 2011-08-04 | 1 | -16/+12 |
* | Put inserted items on skiplists so we can do efficient searches (including fo... | Michael Cahill | 2011-07-29 | 1 | -17/+23 |
* | Match how Michael is doing naming, static functions don't need the __wt_ | Keith Bostic | 2011-08-03 | 1 | -160/+160 |
* | Re-work fixed-length column-store as bitfields, not byte fields. | Keith Bostic | 2011-07-26 | 1 | -28/+59 |
* | We're using "key/value", not "key/data" in WiredTiger, rename the cell types | Keith Bostic | 2011-07-22 | 1 | -4/+4 |
* | Fix format string, missing %. | Keith Bostic | 2011-07-22 | 1 | -1/+1 |
* | Remove the support for the fixed-length, RLE column-store format (this | Keith Bostic | 2011-07-21 | 1 | -67/+0 |
* | Add missing % in format statement. | Keith Bostic | 2011-07-19 | 1 | -1/+1 |
* | Fix a typo, var-len column-store now supports RLE. | Keith Bostic | 2011-07-17 | 1 | -1/+1 |
* | Write the remaining code for cursor, search insert and reconciliation | Keith Bostic | 2011-07-17 | 1 | -5/+14 |
* | Add support for RLE counts for deleted and overflow data cells. I don't | Keith Bostic | 2011-07-16 | 1 | -12/+6 |
* | Replace N different cell extraction functions with a single cell_unpack | Keith Bostic | 2011-07-14 | 1 | -23/+40 |