summaryrefslogtreecommitdiff
path: root/build_posix/aclocal/version-set.m4
Commit message (Collapse)AuthorAgeFilesLines
* Cut release 1.5.3.1.5.3Alex Gorrod2013-04-261-2/+2
|
* Cut release 1.5.2.1.5.2Michael Cahill2013-03-281-2/+2
|
* Cut release 1.5.11.5.1Michael Cahill2013-03-251-2/+2
|
* Cut release 1.5.0.1.5.0Michael Cahill2013-03-141-4/+4
|
* Cut release 1.4.2.1.4.2Michael Cahill2013-01-141-2/+2
|
* Cut release 1.4.11.4.1Alex Gorrod2012-12-131-2/+2
|
* Cut release 1.4.01.4.0Alex Gorrod2012-12-031-4/+4
|
* Cut release 1.3.81.3.8Alex Gorrod2012-11-221-2/+2
|
* Cut release 1.3.7.1.3.7Michael Cahill2012-11-091-2/+2
|
* Cut release 1.3.6.1.3.6Michael Cahill2012-11-061-2/+2
|
* Cut release 1.3.5.1.3.5Alex Gorrod2012-10-261-2/+2
|
* Cut release 1.3.4.1.3.4Michael Cahill2012-10-191-2/+2
|
* Cut release 1.3.3.1.3.3Michael Cahill2012-10-111-2/+2
|
* Cut release 1.3.2.1.3.2Michael Cahill2012-10-031-2/+2
|
* Cut release 1.3.1.1.3.1Michael Cahill2012-09-251-2/+2
|
* Cut release 1.3.0.1.3.0Michael Cahill2012-09-171-4/+4
|
* Move dist/RELEASE to the top level of the tree.Michael Cahill2012-08-021-2/+2
| | | | | | | Bump the version to 1.2.3 to check that it is updated everywhere. --HG-- rename : dist/RELEASE => RELEASE
* Cut bugfix release 1.2.2.Michael Cahill2012-06-201-2/+2
|
* Bump version to 1.2.1.1.2.1Michael Cahill2012-06-151-2/+2
|
* Bump the version to 1.2.0.1.2.0Michael Cahill2012-06-041-4/+4
|
* Bump version to 1.1.51.1.5Michael Cahill2012-04-261-2/+2
|
* Cut release 1.1.4.1.1.4Michael Cahill2012-04-161-2/+2
|
* Cut release 1.1.3.Michael Cahill2012-04-041-2/+2
|
* Cut release 1.1.2.Michael Cahill2012-03-201-2/+2
| | | | | --HG-- extra : rebase_source : 2a3ef9165ed9001ebb2b013577652d831140c370
* Bump version to 1.1.1.1.1.1Michael Cahill2012-03-121-2/+2
|
* Bump the version to 1.1.Michael Cahill2012-02-281-3/+3
|
* Update to 1.0release-1.01.0.0Michael Cahill2012-02-031-4/+4
|
* Rev the minor version number.Keith Bostic2012-01-131-3/+3
|
* Bump the version to something closer to 1.0.Michael Cahill2011-09-201-3/+3
|
* Replace column-store page-extension code with a new skiplist, maintainedKeith Bostic2011-09-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | on the last page of the tree. Replace the col_extend serialization function with a new append function Pin the last page of the tree in memory so we can access it without first acquiring a hazard reference. And, don't acquire/release hazard references on pinned pages. Don't ever try to evict a pinned page during a sync call. Change sync to quit trying after 5 attempts -- the page is busy. Always flush memory before we release a hazard referenced on a page we've just pinned, make sure the pin hits memory before the hazard reference is released. Fix bugs where the row- and column-store code was calling the row_key serialization function incorrectly, the WT_INSERT field was not allocated and should not have been freed, also the insert serialization function had a similar problem. Once this change was made, we no longer needed to track the sizes of these items. Change the row- and column-store code to not use per session buffers for on-page structures, specifically the insert list heads, use normal allocation memory instead. Change the test/format code to test insert with fixed-length files, again. Create column.i: it's a few routines from cursor.i and the search routine from col_srch.c. Remove the btree/col_extend.c file, no longer used. Remove the column_internal_extend, column_leaf_extend configuration values, no longer used. Remove the functions that let the workQ increase the count of pages in memory, no longer used. --HG-- rename : src/include/cursor.i => src/include/column.i extra : rebase_source : ee32aeda7db964def30da0920abe6aaf59ba62a1
* Fix up various build issues:Michael Cahill2011-09-061-1/+1
| | | | | | * make test programs link statically by default * depende on libwiredtiger.la so tests are relinked when the library changes * don't bother with helper targets for test/insert
* Make the cursor->search_near method's "exact" argument work.Keith Bostic2011-09-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Add cursor->search function for Btree tables, cursor->search_near has to do quite a bit more work if there's no exact match, we don't want to slow down normal lookup. Replace WT_CURSOR_BTREE->match with WT_CURSOR_BTREE->compare which matches the semantics of the exact parameter to cursor->search_near, that is, -1 if it's a smaller key in the tree, 0 for an exact match, and 1 if it's a larger key in the tree. The cursor->search_near function has to return a key if the match is not exact: change __wt_return_value() to optionally return a key, and rename it to __wt_kv_return(). Split read statistics into read and read-near. Move set of WT_CURSOR_BTREE->flags(WT_CBT_SEARCH_SET) down into the search routines. Change __cursor_deleted() to be a boolean, not returning an error value, we don't necessarily return error on deleted records. The search routines don't return WT_RESTART, that only happens if the tree is modified: remove restart loops from search calls, add restart loops to modify calls.
* Put version information into m4 to avoid post-processing the configure script.Michael Cahill2011-08-261-0/+14
This allows the auto* machinery to regenerate scripts as necessary.