summaryrefslogtreecommitdiff
path: root/src/btree/bt_vrfy.c
Commit message (Expand)AuthorAgeFilesLines
* WT-2671 dump more information about the file layout in verify debug mode (#2755)Keith Bostic2016-06-091-20/+27
* WT-2558: WT_PAGE structure is 72B, reduce to 64B.Keith Bostic2016-04-171-7/+5
* WT-2330: in-memory configurations should not create on-disk collection filesKeith Bostic2016-03-251-2/+2
* WT-2426 Lock all handles for checkpoints in one pass.Michael Cahill2016-03-171-1/+1
* WT-2339: format post-rebalance verify failureKeith Bostic2016-01-201-9/+20
* Upgrade copyright notices from 2015 to 2016.Keith Bostic2016-01-011-1/+1
* Boolean conversion for the rest of the btree code.Keith Bostic2015-09-231-15/+16
* Convert the reconciliation structure's ints to bools.Keith Bostic2015-09-221-1/+1
* WT-2081: don't bother with a wrap-up verbose progress message, itKeith Bostic2015-09-031-5/+1
* WT-2081 Make verify progress reporting less verbose.Alex Gorrod2015-09-031-3/+5
* Whitespace: 3 spaces after a period in a comment.Keith Bostic2015-06-141-1/+1
* Add the "strict" configuration option to WT_SESSION.verify, defaultKeith Bostic2015-06-061-2/+2
* Display internal/leaf page total counts with the tree shape.Keith Bostic2015-05-211-2/+9
* Another try at removing HAVE_DIAGNOSTIC requirement from the verify codeKeith Bostic2015-02-121-87/+75
* Revert "Remove the requirement of a HAVE_DIAGNOSTIC build for the verify"Keith Bostic2015-02-121-75/+91
* Remove the requirement of a HAVE_DIAGNOSTIC build for the verifyKeith Bostic2015-02-121-91/+75
* Add support for a new verify debug option, "dump_shape", that reportsKeith Bostic2015-02-121-12/+71
* Row-store leaf pages can have parent references of type WT_CELL_ADDR_DEL.Keith Bostic2015-02-021-1/+6
* Cache a maximum of 2MB per session for scratch buffers (configurable via an u...Michael Cahill2015-01-051-4/+4
* Copyright notices: add MongoDB, update to 2015.Keith Bostic2015-01-041-0/+1
* Don't try to set and clear session->split_gen in WT_INTL_FOREACH_BEGIN: there...Michael Cahill2014-12-181-1/+2
* Typedef wt_off_t as an off_t if the type is available on the system.Keith Bostic2014-10-021-1/+2
* Introduce a new type to replace off_t called wt_off_t since off_t is 32-bits ...Mark Benvenuto2014-10-021-1/+1
* The WT_INTL_FOREACH_BEGIN macro walks the page's index, and it could beKeith Bostic2014-09-281-2/+2
* Add flags to page release, respect WT_READ_NO_GEN to avoid forced eviction.Michael Cahill2014-08-131-2/+2
* Minor renaming, __wt_lex_compare_collator to __wt_compare,Keith Bostic2014-08-111-2/+2
* Replace the collator comparison #defines with inline functions,Keith Bostic2014-08-101-3/+4
* Rename __wt_bt_cache_XXX functions to be __wt_cache_XXX to match theKeith Bostic2014-07-171-2/+1
* Flag rename:Keith Bostic2014-05-201-2/+2
* A somewhat different approach to --enable-verbose: inline __wt_verbose()Keith Bostic2014-05-051-4/+4
* The disk header in a page is read-only: mark it const.Michael Cahill2014-04-301-3/+3
* Rename btree->{evict,root}_page -- they aren't WT_PAGEs any more.Michael Cahill2014-04-031-2/+2
* Add support for a new verify option "-d dump_offsets=#,#,#", that allowsKeith Bostic2014-04-011-28/+55
* Experimental change: move the WT_PAGE.{parent,ref_hint} fields into theKeith Bostic2014-03-291-46/+51
* Merge branch 'develop' into new-splitKeith Bostic2014-03-051-2/+2
|\
| * Switch to using hazard references for walks through the cache.Michael Cahill2014-02-271-2/+2
* | Switch the WT_PAGE union #defines from pu_xxx to pg_xxx.Keith Bostic2014-02-241-7/+7
* | It's dangerous to reach down into the WT_PAGE_INDEX structure (and doingKeith Bostic2014-02-161-4/+4
* | Replace eviction code to deepen the tree using split-merge pages withKeith Bostic2014-02-161-3/+3
* | Add pu_xxx_field #defines for the rest of the page-union fields.Keith Bostic2014-02-051-5/+5
* | Add a new level of indirection on internal pages so there's a way toKeith Bostic2014-02-051-7/+7
* | Replace the WT_PAGE's WT_REF pointer with a uint32_t hint of the slotKeith Bostic2014-02-031-1/+1
|/
* We no longer verify in-memory trees, only file trees, which means theKeith Bostic2014-01-111-2/+2
* Avoid memset in performance-critical code by keeping a zeroed static structur...Michael Cahill2014-01-101-3/+4
* Update copyright notices for 2014.Keith Bostic2014-01-071-1/+1
* Make addr_size (block manager's address sizes) a size_t instead of aKeith Bostic2013-12-231-4/+4
* Better/fixed support for huge keys/values.Keith Bostic2013-12-161-1/+1
* Coverity: Dereference before null check (REVERSE_INULL)Keith Bostic2013-11-161-10/+8
* Don't perform leaf-no-overflow cell type checks for row-store internal pages,Keith Bostic2013-11-121-8/+11
* Create a new cell type WT_CELL_ADDR_LEAF, use it to mark leaf pageKeith Bostic2013-11-121-23/+39