summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Cut release 1.3.1.1.3.1Michael Cahill2012-09-255-6/+53
* Merge pull request #336 from wiredtiger/lsm-checkpoint-openagorrod2012-09-245-14/+43
|\
| * Clear the btree handle at the beginning of a drop operation.Michael Cahill2012-09-251-0/+3
| * Another fix to make sure handles are unlocked exactly once if drop fails.Michael Cahill2012-09-241-3/+5
| * Fix the change to track exclusive handles for drop operations: always log theMichael Cahill2012-09-242-25/+16
| * If a drop fails to acquire all of the handle locks it needs, make sure itMichael Cahill2012-09-241-0/+18
| * Have LSM read from checkpoints. In corner cases, we may have an empty chunk ...Michael Cahill2012-09-241-2/+13
| * Remove the hard-coded LSM checkpoint config stack: use the defaults.Michael Cahill2012-09-241-1/+1
| * Two fixes for LSM, one to ensure that cursors read from a checkpointAlex Gorrod2012-09-242-2/+6
* | Overflow objects created during reconciliation won't have any flags set,Keith Bostic2012-09-241-0/+2
|/
* Don't nest auto-commit transactions.Michael Cahill2012-09-241-1/+1
* Merge branch 'master' into developMichael Cahill2012-09-240-0/+0
|\
| * Merge branch 'develop'Michael Cahill2012-09-17314-7283/+19446
| |\
| * \ Merge branch 'release-1.2'Michael Cahill2012-06-2022-55/+207
| |\ \
| * \ \ Merge branch 'develop'Michael Cahill2012-06-1519-84/+191
| |\ \ \
| * \ \ \ Merge branch 'develop'Michael Cahill2012-06-04275-6413/+12351
| |\ \ \ \
| * \ \ \ \ Merge branch 'develop'Michael Cahill2012-04-2619-90/+177
| |\ \ \ \ \
| * \ \ \ \ \ Merge branch 'develop'Michael Cahill2012-04-166-6/+37
| |\ \ \ \ \ \
| * | | | | | | Merge branches 'develop' and 'master' of github.com:wiredtiger/wiredtigerMichael Cahill2012-04-160-0/+0
* | | | | | | | Be lazy about allocating auto-commit transactions.Michael Cahill2012-09-245-6/+35
* | | | | | | | Be careful not to destroy the transaction modify context when evicting.Michael Cahill2012-09-241-0/+7
* | | | | | | | Fix a leak of the LSM data source handle.Michael Cahill2012-09-242-5/+14
* | | | | | | | Fix a leak of the in-memory transaction log structure.Michael Cahill2012-09-241-0/+2
* | | | | | | | Use Keith's new list of valgrind suppressions applied to any Python binary.Michael Cahill2012-09-241-376/+32
* | | | | | | | Lint for dictionary skip list implementation.Alex2012-09-231-2/+0
* | | | | | | | Revert last push. It had the wrong set of changes.Alex2012-09-232-179/+0
* | | | | | | | Lint for dictionary skip lists.Alex2012-09-232-0/+179
* | | | | | | | Merge pull request #335 from wiredtiger/skipsagorrod2012-09-237-162/+317
|\ \ \ \ \ \ \ \
| * | | | | | | | Add dictionary support to variable-length column store objects,Keith Bostic2012-09-225-89/+138
| * | | | | | | | Merge branch 'develop' into skipsKeith Bostic2012-09-223-9/+11
| |\ \ \ \ \ \ \ \
| * | | | | | | | | Change the WT_CELL_VALUE_COPY cell format to not, by default, includeKeith Bostic2012-09-222-8/+20
| * | | | | | | | | Merge branch 'develop' into skipsKeith Bostic2012-09-215-25/+44
| |\ \ \ \ \ \ \ \ \
| * | | | | | | | | | Pick a random number for the size of the dictionary.Keith Bostic2012-09-211-1/+1
| * | | | | | | | | | Merge branch 'develop' into skipsKeith Bostic2012-09-2142-539/+814
| |\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Support large row-store reconciliation dictionaries: add a skiplistKeith Bostic2012-09-214-83/+175
* | | | | | | | | | | | Don't re-allocate if the memory needed is exactly the right amount,Keith Bostic2012-09-231-1/+1
| |_|_|/ / / / / / / / |/| | | | | | | | | |
* | | | | | | | | | | minor cleanup of a comment.Keith Bostic2012-09-221-3/+3
* | | | | | | | | | | The change in 1f4c1aeb58d73d18bb24bdbfdd4a56f7f1f8bac1 is relevant toKeith Bostic2012-09-212-6/+8
| |_|/ / / / / / / / |/| | | | | | | | |
* | | | | | | | | | Fix a memory leak where a page's replacement address wasn't being free'dKeith Bostic2012-09-212-11/+23
* | | | | | | | | | Fixes for issues uncovered by autocommit.Michael Cahill2012-09-213-14/+21
| |/ / / / / / / / |/| | | | | | | |
* | | | | | | | | Merge pull request #331 from wiredtiger/autocommitMichael Cahill2012-09-2018-175/+203
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | Deal with errors during auto-commit transactions, update the snapshot ofMichael Cahill2012-09-212-2/+13
| * | | | | | | | | Add autocommit to WT_SESSION::truncate.Michael Cahill2012-09-214-35/+56
| * | | | | | | | | Ignore transactions if the database is configured without transaction support.Michael Cahill2012-09-211-0/+9
| * | | | | | | | | Only rollback changes that were successfully installed.Michael Cahill2012-09-212-21/+24
| * | | | | | | | | Tweak page sizes in test/format for small caches.Michael Cahill2012-09-191-2/+5
| * | | | | | | | | Implement auto-commit of transactions at the API.Michael Cahill2012-09-1913-149/+130
| |/ / / / / / / /
* | | | | | | | | Merge pull request #332 from wiredtiger/bulk-checkpointMichael Cahill2012-09-2027-370/+615
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | |
| * | | | | | | | Clarify that only newly created objects may be bulk-loaded, emptyKeith Bostic2012-09-202-7/+8
| * | | | | | | | Merge branch 'develop' into bulk-checkpointKeith Bostic2012-09-203-20/+33
| |\ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | |