summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Restructure LSM and KVS data-sources; the top-level object is a "file:"Keith Bostic2013-05-153-10/+23
| | | | | or a "table:", KVS devices are configured on create with "source:XXX", LSM is configured on create with "type:lsm".
* Change file_extend syntax from file_extend=(type=[data,log],size=XXX)Keith Bostic2013-05-143-1/+9
| | | | | | to file_extend=(data=XXX,log=XXX). Add period testing of file_extend to test/format.
* Snapshots (including eviction) *should* include the last committed transaction.Michael Cahill2013-05-141-10/+10
|
* Use the allocation size for the file "desc" block. This is important for ↵Michael Cahill2013-05-091-3/+3
| | | | direct I/O, so that reads and writes are aligned as expected.
* Don't configure the KVS extensions unless we're using them.Keith Bostic2013-05-071-2/+2
|
* Fix a few old-style function declarations.Keith Bostic2013-05-032-2/+2
|
* Merge pull request #520 from wiredtiger/lsm_statsagorrod2013-05-031-1/+1
|\ | | | | Add more generic aggregated statistics. Used for LSM at the moment, will be expanded to other data sources in the future.
| * Merge branch 'develop' into lsm_statsKeith Bostic2013-05-021-0/+1
| |\
| * | As a consequence of the last set of changes, you can't get the cache-sizeKeith Bostic2013-05-011-1/+1
| | | | | | | | | | | | | | | (which is a statistic), without configuring "statistics" when you open the database.
* | | Don't allow test format configurations with illegal page sizes.Alex Gorrod2013-05-031-2/+4
| |/ |/|
* | Allow unquoted config values that include slashes.Michael Cahill2013-05-021-0/+1
|/
* I'm currently doing all runs of memrata with /dev/loop0.Keith Bostic2013-04-241-1/+1
|
* Make sure two leaf pages fit in cache per thread: test/format does next/prev ↵Michael Cahill2013-04-241-2/+2
| | | | operations.
* Fix test/format output for automated tests: don't clear the line unless ↵Michael Cahill2013-04-241-2/+4
| | | | we're tracking progress.
* Fix build warning in test/format:Alex Gorrod2013-04-231-0/+2
| | | | | | | | ../../../test/format/t.c: In function ‘startup’: ../../../test/format/t.c:204: warning: implicit declaration of function ‘mkdir’ ../../../test/format/t.c:204: warning: nested extern declaration of ‘mkdir’
* switch to "memrata"Keith Bostic2013-04-225-14/+14
|
* Do a better job of erasing the stats output line when writing the completionKeith Bostic2013-04-211-2/+2
| | | | line.
* Remove unnecessary include file.Keith Bostic2013-04-201-1/+0
|
* First cut at a non-transactional version of the STEC KVS shared library.Keith Bostic2013-04-193-18/+15
|
* Now that BDB KVS is a shared library, functions no longer needed.Keith Bostic2013-04-191-2/+0
|
* Berkeley DB KVS implementation can support fixed-sized column-storeKeith Bostic2013-04-191-8/+1
| | | | (bitfields) now.
* Set up the value correctly on fixed-size column store not-found returns,Keith Bostic2013-04-191-12/+12
| | | | otherwise we can drop core during the record comparison.
* Changes to move the Berkeley DB KVS implementation out of test/formatKeith Bostic2013-04-185-890/+18
| | | | | | | and loaded as a shared library. Note we're now passing the Berkeley DB library path as a command-line argument to s_dumpcmp.
* Uninitialized ret variable.Keith Bostic2013-04-181-1/+1
|
* Use an opaque type for config arguments passed to callbacks, rather than void *.Michael Cahill2013-04-181-12/+12
|
* Minor build fixes: don't export WT_CONFIG_ITEM with SWIG, uninitialized 'ret'.Michael Cahill2013-04-181-1/+1
|
* Don't call session.verify for kvsstec at all, the error message is annoying.Keith Bostic2013-04-171-5/+8
|
* kvsstec doesn't support verify, check for EOPNOTSUPP returns.Keith Bostic2013-04-171-1/+2
|
* make it easier to load the stec code.Keith Bostic2013-04-171-2/+6
|
* flip ESET/ERET args to match WiredTiger.Keith Bostic2013-04-171-43/+43
|
* Remove WT_EXTENSION_CONFIG, export WT_CONFIG_ITEM instead.Keith Bostic2013-04-171-13/+13
|
* Rename WT_EXTENSION_API::config to be WT_EXTENSION_API::get_config.Keith Bostic2013-04-171-5/+5
|
* Replace wiredtiger_extension_api() with WT_CONNECTION.get_extension_api.Keith Bostic2013-04-172-2/+2
| | | | | Pass the wiredtiger_extension_init function a (WT_CONNECTION *) instead of a (WT_SESSION *, WT_EXTENSION_API) pair.
* More changes to the extension API (this is only part-way there, but itKeith Bostic2013-04-176-239/+181
| | | | | | | | | | builds cleanly so I'm going to commit it). Change the extension API handle methods to take the handle as their first argument, get rid of the WT_EXTENSION_API.default_session method, instead, store a reference to the enclosing WT_CONNECTION in the extension handle. This push also includes a few changes that are part of creating a STEC data source.
* Data source cleanup: fix some build warnings, exclude new function from the ↵Michael Cahill2013-04-121-0/+7
| | | | Java API, allow enough space in the wiredtiger_open cfg stack for a WIREDTIGER_CONFIG environment variable.
* Add a new method WT_EXTENSION_API::config that takes a cfg[] and returnsKeith Bostic2013-04-101-132/+95
| | | | | a configuration string's value. Push that method through the KVS code in test/format.
* Remove the wiredtiger_XXX #defines for the extension API, always use theKeith Bostic2013-04-101-0/+2
| | | | WT_EXTENSION_API handle instead.
* whitespace fix.Keith Bostic2013-04-101-2/+2
|
* I changed an error message, update the test suite to match.Keith Bostic2013-04-092-3/+3
|
* Four words and I had a typo. Sheesh.Keith Bostic2013-04-091-1/+1
|
* Add a comment.Keith Bostic2013-04-091-1/+1
|
* Make WiredTiger extension functions available to linked-in modules viaKeith Bostic2013-04-096-58/+66
| | | | | | | | | | | | a new function wiredtiger_extension_api(WT_EXTENSION_API **pp). Write some WT_EXTENSION_API documentation. Remove WT_SESSION::msg_printf, add a new msg_printf extension function instead, convert test/format to use it. Quit using __UNUSED in the extension code, use explicit (void) casting, it's cleaner.
* lintKeith Bostic2013-04-061-2/+2
|
* Minor include file cleanup.Keith Bostic2013-04-061-4/+1
|
* Add support for the WT_CURSOR::search_near "exact" paramter -- entirelyKeith Bostic2013-04-061-120/+152
| | | | | untested for now. Factor out key/value copyin/copyout code.
* Missed one change of kvs to kvsbdb.Keith Bostic2013-04-061-1/+1
|
* Rename "kvs" to "kvsbdb" to make room for the STEC implementation.Keith Bostic2013-04-066-18/+18
| | | | | Add information about various semantics the data-source has to handle: append, overwrite, implicitly creating records, and the bitfield format.
* KVS doesn't support fixed-length column-store, don't configure it.Keith Bostic2013-04-051-12/+20
|
* Make a value format of "[0-9]t" an error, we're not going to supportKeith Bostic2013-04-041-4/+15
| | | | | | bit maps underneath here. I need to make the corresponding change in test/format not to configure fixed formats with kvs, but this should be here regardless.
* Write some custom data source documentation based on my Berkeley DB code.Keith Bostic2013-04-041-2/+17
| | | | | Don't drop core for any uninitialized WT_DATA_SOURCE method and report a consistent "not supported" error.