summaryrefslogtreecommitdiff
path: root/src/btree/bt_debug.c
Commit message (Expand)AuthorAgeFilesLines
* Move the append array out of the last page into the WT_BTREE structure: it'sKeith Bostic2011-12-281-4/+6
* Create a per-block structure, WT_BLOCK, and move all of the block-specificKeith Bostic2011-12-271-1/+2
* Do line-buffering when writing debug output to a file, we want to seeKeith Bostic2011-12-241-1/+7
* Fix a bug where we couldn't dump split-merge pages.Keith Bostic2011-12-231-9/+12
* Move root addresses into the schema file and add support for theKeith Bostic2011-12-211-37/+0
* Work through the block manager vs. block functions naming: the former areKeith Bostic2011-12-201-1/+1
* Make salvage work with variable-length filesystem address cookies.Keith Bostic2011-12-201-2/+2
* Split u.col_leaf into two parts (u.col_fix and u.col_var), and move theKeith Bostic2011-12-181-3/+5
* Replace WT_OFF/WT_OFF_RECORD structures on row- and column-store internalKeith Bostic2011-12-171-225/+214
* fix some spelling.Keith Bostic2011-12-051-1/+1
* Expand "illegal-format" to include "bad value" (we use it in placesKeith Bostic2011-12-051-6/+6
* Simplify a bit of code, we don't need temporary variables orKeith Bostic2011-12-051-14/+6
* Add a routine to dump out the WT_PAGE_MODIFY structure when dumping outKeith Bostic2011-12-051-29/+112
* Change the bulk-load code to call the reconciliation code directly.Keith Bostic2011-12-031-8/+0
* Split WT_PAGE_REC_SPLIT into two cases: WT_PAGE_REC_SPLIT which meansKeith Bostic2011-12-021-0/+2
* Rework empty trees:Keith Bostic2011-11-281-2/+0
* Split the reconciliation into reconciliation and eviction pieces, andKeith Bostic2011-11-261-6/+7
* Add a force flag to eviction to block waiting for busy pages.Michael Cahill2011-11-111-2/+4
* Change SESSION->dumpfile to dump the btree file description sector.Keith Bostic2011-11-051-0/+37
* Implement the wiredtiger_open "create" and "exclusive" configurationKeith Bostic2011-10-011-6/+7
* make value output consistent (no colon).Keith Bostic2011-09-241-1/+1
* It's an update list, not an insert list.Keith Bostic2011-09-231-2/+2
* Print out the string "value", instead of "update", for update structures.Keith Bostic2011-09-121-2/+2
* Column-store files don't have "insert" lists, they have "update" lists.Keith Bostic2011-09-111-8/+8
* Replace column-store page-extension code with a new skiplist, maintainedKeith Bostic2011-09-111-15/+29
* Mark WT_COL_RLE as "packed" to save 4 bytes in memory per repeated item in va...Michael Cahill2011-08-091-2/+2
* Use "memsize" everywhere, don't mix with "mem_size".Michael Cahill2011-08-181-2/+2
* Use size_t for size calculations, only store uint32_t in structs.Michael Cahill2011-08-181-11/+11
* Display the record number for variable-length column-store entries.Keith Bostic2011-08-311-7/+8
* Intermediate commit of new cursor code. Both prev/next cursor motionsKeith Bostic2011-08-301-19/+17
* ANSI C-style free semantics for scratch buffers, caller doesn't have toKeith Bostic2011-08-201-2/+1
* Rename __wt_scr_release -> __wt_scr_free so we have an alloc/free pair,Keith Bostic2011-08-191-3/+3
* strlen() returns a size_t, cast it explicitly.Keith Bostic2011-08-171-2/+2
* If there is a checksum failure during salvage, silently skip the block.Michael Cahill2011-08-171-1/+1
* Move the block allocation and block write code out of btree/ and intoKeith Bostic2011-08-161-1/+1
* Move block allocation, stream compression and zeroing out any unusedKeith Bostic2011-08-151-1/+1
* Change __wt_debug_addr to allocate a scratch buffer instead of allocatingKeith Bostic2011-08-121-12/+5
* Added compression infrastructure, example compressors and tests.Don Anderson2011-08-101-1/+2
* Remove declarations for static inline functions, when mixed with non-inlined ...Michael Cahill2011-08-041-16/+12
* Put inserted items on skiplists so we can do efficient searches (including fo...Michael Cahill2011-07-291-17/+23
* Match how Michael is doing naming, static functions don't need the __wt_Keith Bostic2011-08-031-160/+160
* Re-work fixed-length column-store as bitfields, not byte fields.Keith Bostic2011-07-261-28/+59
* We're using "key/value", not "key/data" in WiredTiger, rename the cell typesKeith Bostic2011-07-221-4/+4
* Fix format string, missing %.Keith Bostic2011-07-221-1/+1
* Remove the support for the fixed-length, RLE column-store format (thisKeith Bostic2011-07-211-67/+0
* Add missing % in format statement.Keith Bostic2011-07-191-1/+1
* Fix a typo, var-len column-store now supports RLE.Keith Bostic2011-07-171-1/+1
* Write the remaining code for cursor, search insert and reconciliationKeith Bostic2011-07-171-5/+14
* Add support for RLE counts for deleted and overflow data cells. I don'tKeith Bostic2011-07-161-12/+6
* Replace N different cell extraction functions with a single cell_unpackKeith Bostic2011-07-141-23/+40