| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-10-16 | Merge branch 'develop' into release-2.4.0 | Alex Gorrod | |
| 2014-10-16 | Add section about basecfg update. | Alex Gorrod | |
| 2014-10-16 | Include the trailing NUL when copying a config string. | Michael Cahill | |
| 2014-10-16 | Handle @subpage_single the same as @ref_single in the docs, for cases where ↵ | Michael Cahill | |
| a multi-language page references a single-language page. | |||
| 2014-10-16 | Merge pull request #1274 from wiredtiger/basecfg-version | Michael Cahill | |
| Basecfg version | |||
| 2014-10-15 | MSVC doesn't yet support "%zu", replace with #defines. | Keith Bostic | |
| 2014-10-15 | Enhance the comment, note for the record we can map past EOF. | Keith Bostic | |
| 2014-10-15 | Use %zu as the printf format for size_t. | Keith Bostic | |
| 2014-10-15 | Record the fh->size and consistently mmap and return that same size. | Susan LoVerso | |
| 2014-10-15 | Add mapping pointers to the verbose output from the map/unmap system | Keith Bostic | |
| calls so it's possible to associate them. | |||
| 2014-10-15 | update | Keith Bostic | |
| 2014-10-15 | KNF | Keith Bostic | |
| 2014-10-15 | There are 4 global options. | Keith Bostic | |
| 2014-10-15 | Add -j to the load command's synopsis line. | Keith Bostic | |
| 2014-10-15 | Fix build warning. | Alex Gorrod | |
| 2014-10-15 | Merge pull request #1258 from wiredtiger/java-doc-examples | Michael Cahill | |
| Java doc examples | |||
| 2014-10-15 | Merge branch 'develop' into json-load | Alex Gorrod | |
| Conflicts: dist/s_string.ok src/include/extern.h src/utilities/util_load.c | |||
| 2014-10-14 | whitespace | Keith Bostic | |
| 2014-10-14 | Fix error in Windows CRC calculation for unaligned buffers. | Don Anderson | |
| refs #1271. | |||
| 2014-10-14 | Add more wording on upgrade/downgrade of databases. | Keith Bostic | |
| Add "config_base" configuration string to wiredtiger_open, controls the creation of the base-configuration file. Add a test, merge test_isnew.py and test_gethome.py plus the new test into test_home.py.: | |||
| 2014-10-14 | Merge branch 'develop' into basecfg-version | Keith Bostic | |
| 2014-10-14 | Fix unused variable on OS X. | Michael Cahill | |
| 2014-10-14 | Typo in last commit: s/remove/reset(!) | Michael Cahill | |
| 2014-10-14 | Close and reset cursors that could prevent eviction during recovery. | Michael Cahill | |
| 2014-10-13 | Typo, clear the right file handle on error. | Keith Bostic | |
| 2014-10-13 | Remove __open_directory_sync call, not needed on Windows. | Keith Bostic | |
| 2014-10-13 | Merged fallocate-restructure before merging Mark's changes: cherry pick | Keith Bostic | |
| 9d7ffe7, 3ce43ba into develop. | |||
| 2014-10-13 | Rename functions, and fix error handling | Mark Benvenuto | |
| 2014-10-13 | Use a separate file handle for file truncation & allocation | Mark Benvenuto | |
| 2014-10-14 | Merge pull request #1273 from wiredtiger/fallocate-restructure | Michael Cahill | |
| Fallocate restructure | |||
| 2014-10-13 | FindFirstFile returns INVALID_HANDLE_VALUE, not NULL | Keith Bostic | |
| 2014-10-13 | KNF | Keith Bostic | |
| 2014-10-13 | Merge pull request #1276 from markbenvenuto/dir_fix | Keith Bostic | |
| Fix Windows os_dir.c, and os_ftruncate.c. Correctly enable hardware chksum | |||
| 2014-10-13 | Fix Windows os_dir.c, and os_ftruncate.c. Correctly enable hardware chksum. | Mark Benvenuto | |
| 2014-10-13 | add config validation for Windows config | Mark Benvenuto | |
| 2014-10-13 | whitespace | Keith Bostic | |
| 2014-10-13 | Add a page on upgrading. | Keith Bostic | |
| 2014-10-13 | The upgrade configuration string is the same string to which we're | Keith Bostic | |
| appending new configuration options, clarify that by only using one parameter. | |||
| 2014-10-13 | Merge branch 'develop' into basecfg-version | Keith Bostic | |
| 2014-10-13 | Merge branch 'develop' into fallocate-restructure | Keith Bostic | |
| 2014-10-13 | Make sure the Java examples are built along with the API. Make section ↵ | Michael Cahill | |
| names language-specific to avoid errors from newer releases of doxygen. | |||
| 2014-10-13 | If restored a tombstone WT_UPDATE after splitting, calculate the correct size. | Michael Cahill | |
| 2014-10-12 | Add support for upgrading configuration strings: leave the obsolete | Keith Bostic | |
| version in the configuration list, but undocumented, and translate it to the new version by appending to the configuration string where the obsolete version was specified. Use "lsm_merge=boolean" as the example. | |||
| 2014-10-12 | Add a check for an incompatible version in any configuration string, | Keith Bostic | |
| and fail if it's a future release. | |||
| 2014-10-12 | Merge branch 'develop' into basecfg-version | Keith Bostic | |
| 2014-10-12 | Revert POSIX OS changes from c5b71e5, reference #1254: that commit | Keith Bostic | |
| changed ftruncate calls on file handles where the file was also mapped (that is, a WiredTiger checkpoint was open in the object), to return EBUSY instead of doing the truncate. We use ftruncate() to extend files when fallocate/posix_fallocate are not available or when running on filesystems that don't support them (for example, ext3). I missed that use of ftruncate in the above commit, so note the above commit wasn't complete and we could call ftruncate on files where the file was also mapped into memory. I'm not willing to lock out file extension if a file is mapped. While there are known problems in combining file mapping and ftruncate on historic Linux systems, I don't know of any problems on current systems, so I'm removing this restriction until we see a failure. Reference #1267. | |||
| 2014-10-12 | Make fallocate/posix_fallocate more configurable. | Keith Bostic | |
| When opening a file handle, add file-handle variables to note if fallocate/posix_fallocate calls are available and if they require locking. Also, fallocate/posix_fallocate are known to fail at run-time based on the underlying filesystem type. In that case, always return ENOTSUP from fallocate/posix_fallocate, resetting the file-handle information and falling back to ftruncate in the caller. Remove the implementation of __wt_fallocate() using ftruncate, we may have to re-acquire a lock when switching from a failed fallocate() call to a ftruncate() call, when extending the file from the block manager, so the caller has to do that work itself. Reference #1267. | |||
| 2014-10-11 | Revert "Simplify cksum-init, avoid complaint about a macro that's never used." | Keith Bostic | |
| This reverts commit 7f2f048673d26c39d669c1e68ee4b4a9ffca4d6b. | |||
| 2014-10-11 | Revert "Minor code shuffling, makes both clang and lint happier." | Keith Bostic | |
| This reverts commit 5cedb357dfa26dd1c2b2fdf1f3698534208e1222. | |||
| 2014-10-11 | Minor code shuffling, makes both clang and lint happier. | Keith Bostic | |
