| Commit message (Expand) | Author | Age | Files | Lines |
* | Reorder the verbose version output, so the library version comes first. | Michael Cahill | 2013-06-04 | 1 | -1/+1 |
* | WT_NOTFOUND is used for things other than "cursor" not found, generalize it. | Keith Bostic | 2013-04-10 | 1 | -1/+1 |
* | Update copyright notice to 2013. | Keith Bostic | 2013-01-01 | 1 | -1/+1 |
* | Add a __wt_panic function that shuts down all of the WiredTiger APIs. | Keith Bostic | 2012-12-10 | 1 | -1/+1 |
* | Add a new error, WT_PANIC, which will be the panic return, ref #215. | Keith Bostic | 2012-12-10 | 1 | -0/+2 |
* | Rework WT_EVENT_HANDLERs. | Keith Bostic | 2012-05-04 | 1 | -71/+0 |
* | Minor clarification of the meaning of WT_NOTFOUND: it's a cursor operation | Keith Bostic | 2012-02-08 | 1 | -1/+1 |
* | Update copyright notices to 2012. | Keith Bostic | 2012-01-22 | 2 | -6/+6 |
* | Fix a comment. | Keith Bostic | 2011-12-28 | 1 | -1/+1 |
* | When the engine calls __wt_err on error, it often outputs an error | Keith Bostic | 2011-12-25 | 1 | -4/+15 |
* | Reorg the api directory into connection and session parts. While in the area... | Michael Cahill | 2011-12-14 | 11 | -2771/+0 |
* | To avoid problems with a tree being closed from underneath an application thr... | Michael Cahill | 2011-12-08 | 1 | -0/+16 |
* | Move the reconcile state from btree handles to session handles: it is not sha... | Michael Cahill | 2011-12-06 | 1 | -0/+3 |
* | Make eviction parameters tunable, to force more or less aggressive eviction. | Michael Cahill | 2011-12-05 | 2 | -12/+14 |
* | Make internal_item_max and leaf_item_max default to allow 10 items per page a... | Michael Cahill | 2011-12-05 | 1 | -14/+14 |
* | automatically prepend verbose messages with their particular tag line | Keith Bostic | 2011-11-29 | 1 | -12/+12 |
* | Add a "verify" verbose option. | Keith Bostic | 2011-11-28 | 2 | -1/+2 |
* | Split the reconciliation into reconciliation and eviction pieces, and | Keith Bostic | 2011-11-26 | 2 | -2/+3 |
* | Change the default cache size to 100MB. | Michael Cahill | 2011-11-23 | 1 | -1/+1 |
* | Rename config keys for page and overflow sizes to {internal,leaf}_{item,page}... | Michael Cahill | 2011-11-23 | 1 | -18/+18 |
* | Avoid session buffers, just call malloc/free directly. | Michael Cahill | 2011-11-10 | 1 | -1/+1 |
* | Wrap error return documentation in named section, link to it from @return sec... | Michael Cahill | 2011-11-15 | 1 | -1/+1 |
* | Fix tests to match config string changes for dump/load. | Michael Cahill | 2011-11-08 | 1 | -12/+13 |
* | Make handling of empty lists in config strings robust against empty inputs. | Michael Cahill | 2011-11-08 | 4 | -47/+51 |
* | Switch to a trylock for operations that need an exclusive handle lock: we don... | Michael Cahill | 2011-11-07 | 1 | -1/+9 |
* | Change the SESSION->{verify,salvage,dumpfile,sync} methods to have a | Keith Bostic | 2011-11-04 | 1 | -63/+26 |
* | SESSION->dumpfile is verify under the covers, and doesn't need | Keith Bostic | 2011-11-04 | 1 | -2/+2 |
* | Rename WT_MTX to WT_CONDVAR | Michael Cahill | 2011-11-04 | 2 | -10/+8 |
* | Fix btree locking to permit salvage on an open handle. | Michael Cahill | 2011-11-04 | 1 | -1/+0 |
* | Remove the workQ code entirely. | Michael Cahill | 2011-11-04 | 1 | -3/+4 |
* | KNF. | Keith Bostic | 2011-11-03 | 1 | -2/+1 |
* | Remove the workQ -- have application threads notify the read and eviction ser... | Michael Cahill | 2011-11-03 | 2 | -10/+10 |
* | Remove the "multithread" configuration for connections. | Michael Cahill | 2011-10-18 | 3 | -28/+6 |
* | __wt_config_concat should just concatenate the config strings. | Michael Cahill | 2011-10-23 | 1 | -16/+16 |
* | Split file cursors out into their own list in the session handle. | Michael Cahill | 2011-10-28 | 1 | -3/+12 |
* | Running the test suite with HAVE_DIAGNOSTIC configured fails because we | Keith Bostic | 2011-11-02 | 1 | -2/+4 |
* | Clean up a couple of places where we declared and cleared a WT_BUF, but never | Keith Bostic | 2011-11-02 | 1 | -4/+2 |
* | Rewrite __wt_config_concat: the problem is the final version of the | Keith Bostic | 2011-10-22 | 1 | -27/+25 |
* | Push handling of locking for bulk cursors into __wt_curfile_create -- fixes b... | Michael Cahill | 2011-10-21 | 1 | -6/+11 |
* | When getting a file exclusive, don't clear the open flag. | Michael Cahill | 2011-10-21 | 1 | -1/+1 |
* | Make sure WT_BTREE_BULK is set on the tree when a bulk cursor is opened. | Michael Cahill | 2011-10-21 | 1 | -3/+8 |
* | Stop overloading the "overwrite" flag for column-store by adding the | Keith Bostic | 2011-10-19 | 1 | -4/+4 |
* | Clarify a comment. | Michael Cahill | 2011-10-18 | 1 | -1/+1 |
* | Rename __wt_buf_sprintf/__wt_buf_sprintf_append to __wt_buf_fmt and | Keith Bostic | 2011-10-10 | 1 | -3/+3 |
* | If the type is "choices", then you have specify a string value for the | Keith Bostic | 2011-10-10 | 1 | -0/+6 |
* | Split __wt_buf_sprintf into two functions: __wt_buf_sprintf that sets the | Keith Bostic | 2011-10-10 | 1 | -1/+0 |
* | Delete trailing blank lines from files. | Keith Bostic | 2011-10-07 | 1 | -1/+0 |
* | Make dump cursors work. | Keith Bostic | 2011-10-07 | 1 | -5/+6 |
* | Implement custom collators. | Michael Cahill | 2011-10-07 | 2 | -33/+47 |
* | Add a "transactional" configuration to wiredtiger_open, the ex_all.c | Keith Bostic | 2011-10-05 | 1 | -4/+5 |