summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* I inserted a bug in my re-write, we have to strip any trailing commaKeith Bostic2012-05-293-3/+11
* If we're copying out data, assert there is data to copy.Keith Bostic2012-05-291-1/+3
* Fix a comment.Keith Bostic2012-05-291-4/+0
* s_style had a bug, it was removing the longest C comment it couldKeith Bostic2012-05-291-3/+2
* WT_ERR call in __wt_block_write_off wasn't necessary, it came before theKeith Bostic2012-05-291-1/+1
* WT_ILLEGAL_VALUE call in __btree_tree_open_empty could leak page memory.Keith Bostic2012-05-291-1/+1
* s_style was complaining of WT_RET(__rec_discard_page) in __wt_rec_evictKeith Bostic2012-05-291-11/+8
* Call to __WT_RET_MSG could leak the scratch buffer.Keith Bostic2012-05-291-1/+1
* Free the temporary buffer on success.Keith Bostic2012-05-291-3/+1
* s_style was complaining because there was a WT_RET that didn't free theKeith Bostic2012-05-291-20/+11
* Typo, fix WT_ITEM declaration.Keith Bostic2012-05-291-1/+1
* WT_RET call in __wt_conn_btree_open could leak a btree handle.Keith Bostic2012-05-291-3/+2
* s_style was complaining because there was a WT_RET that didn't free theKeith Bostic2012-05-291-16/+10
* Calls to WT_RET in __rec_row_int and __rec_row_leaf could leak scratchKeith Bostic2012-05-291-9/+6
* WT_RET calls in row/column search loops could leak a page's hazard reference.Keith Bostic2012-05-292-3/+3
* WT_RET in __verify_dsk_row could leak scratch buffers.Keith Bostic2012-05-291-1/+1
* WT_RET in __slvg_col_build_internal could leak created in-memory pages.Keith Bostic2012-05-291-1/+1
* WT_ILLEGAL_VALUE in __inmem_row_int could leak scratch buffers.Keith Bostic2012-05-291-1/+1
* WT_RET in the middle of __wt_block_read_off() could leak a scratch buffer.Keith Bostic2012-05-291-1/+1
* WT_RET in the middle of __wt_block_open could fail to clean up.Keith Bostic2012-05-291-1/+1
* WT_RET in __wt_block_alloc could leave the allocation spin lock held.Keith Bostic2012-05-291-1/+1
* Arrange documentation on wiredtiger.github.com by release.Michael Cahill2012-05-293-1/+32
* Force transactions to roll back if updates fail.Michael Cahill2012-05-295-22/+20
* src/txn/txn.c:33:17: error: variable 'txn_global' set but not usedMichael Cahill2012-05-291-2/+0
* Transactions see their own changes (broken by the change that added snap_max).Michael Cahill2012-05-291-1/+2
* Use the specified maximum transaction ID when evicting during a checkpoint.Michael Cahill2012-05-291-5/+6
* Don't try to copy the checkpoint transaction struct in eviction threads.Michael Cahill2012-05-295-48/+40
* Add an assertion that we're getting a sane page from the LRU queue.Michael Cahill2012-05-291-0/+1
* Use a single spinlock for synchronization in eviction.Michael Cahill2012-05-293-43/+38
* Always reset the original transaction state after evicting a page.Michael Cahill2012-05-291-4/+2
* checking for unused #defines: WT_DEBUG_BYTEMichael Cahill2012-05-291-0/+1
* Add a small macro that overwrites and free's a structure, for structuresKeith Bostic2012-05-284-7/+13
* Add a comment on why we don't need to publish the session structure clear.Keith Bostic2012-05-281-0/+3
* session-drop normally returns EBUSY if the handle isn't available.Keith Bostic2012-05-281-1/+1
* Fix error messages to have the right method names.Keith Bostic2012-05-281-4/+4
* Now that test/fops is split out of the thread code, there's no need forKeith Bostic2012-05-281-4/+0
* Don't verify/sync after the file ops runs, the last operation may be aKeith Bostic2012-05-281-13/+2
* Split test/thread into two parts, test/thread and test/fops.Keith Bostic2012-05-2812-128/+978
* Merge pull request #227 from wiredtiger/snapshot-resolveMichael Cahill2012-05-278-70/+162
|\
| * Extents free'd up by deleting snapshots cannot immediately be made availableKeith Bostic2012-05-268-70/+162
|/
* Add support for the WT_BTREE_NO_EVICTION flag, don't bother trying toKeith Bostic2012-05-253-10/+19
* Rename the session.open_cursor flag "clear_on_close" to be "statistics_clear",Keith Bostic2012-05-254-19/+18
* Merge pull request #224 from wiredtiger/reconcile-errKeith Bostic2012-05-2514-81/+241
|\
| * Get rid of the NTF_CHK macro, it's no longer making anything better.Keith Bostic2012-05-251-16/+9
| * I made the wrong change -- the tree walk is one page ahead, so you haveKeith Bostic2012-05-251-7/+6
| * Merge branch 'develop' into reconcile-errKeith Bostic2012-05-257-23/+97
| |\ | |/ |/|
* | If a page ever reaches the point where its oldest update is 2^31 transactions...Michael Cahill2012-05-257-23/+97
| * If reconciliation or eviction fail during a close/sync operation, clearKeith Bostic2012-05-251-10/+17
| * Changes to handle write errors in the system.Keith Bostic2012-05-244-16/+107
| * If a write fails, free the allocated blocks back to the avail list.Keith Bostic2012-05-241-1/+13