summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2463 from wiredtiger/WT-2355mongodb-3.3.1Keith Bostic2016-01-271-2/+1
|\ | | | | WT-2355 Use wt_buf_grow instead of free/alloc for scratch buffer.
| * WT-2355 Use wt_buf_grow instead of free/alloc for scratch buffer.Susan LoVerso2016-01-271-2/+1
|/
* Merge pull request #2462 from wiredtiger/WT-2348Alex Gorrod2016-01-273-3/+23
|\ | | | | WT-2348: xargs -P isn't portable
| * WT-2348: xargs -P isn't portableKeith Bostic2016-01-253-3/+23
|/ | | | Test for the -P option to xargs before using it.
* Merge pull request #2459 from wiredtiger/WT-2347-java-schema-formatMichael Cahill2016-01-254-4/+195
|\ | | | | WT-2347 Java fix for unsized 's' schema format
| * WT-2347 Added java tests for config schema formats.Don Anderson2016-01-243-0/+194
| | | | | | | | This corresponds to Python test_config06 and fixes in WT-1517.
| * WT-2347 Added java fix for unsized 's' schema formats.Don Anderson2016-01-241-4/+1
|/ | | | This corresponds to Python fixes in WT-1517.
* Merge pull request #2457 from wiredtiger/WT-2344Keith Bostic2016-01-223-4/+5
|\ | | | | WT-2344: OS X compiler warning
| * WT-2344: OS X compiler warningKeith Bostic2016-01-221-1/+1
| | | | | | | | | | error: format specifies type 'unsigned long long' but the argument has type 'size_t' (aka 'unsigned long') [-Werror,-Wformat]
| * WT-2344: OS X compiler warningKeith Bostic2016-01-222-3/+4
|/ | | | Fix up comment spelling.
* Merge pull request #2452 from wiredtiger/WT-2342-wtperf-background-schemaAlex Gorrod2016-01-227-2/+245
|\ | | | | WT-2342 Add background create/drop to wtperf.
| * Fixup more compiler warnings.Alex Gorrod2016-01-223-12/+19
| | | | | | | | Don't attempt to statically initialize a pthread_t
| * Fixup build warnings.Alex Gorrod2016-01-222-2/+2
| |
| * WT-2342 implement review feedback.Alex Gorrod2016-01-222-8/+16
| |
| * WT-2342 Add background create/drop to wtperf.Alex Gorrod2016-01-217-2/+230
| | | | | | | | | | Works on idle tables. Gives us a way to ensure that schema operations don't get blocked during high throughput workloads.
* | Merge pull request #2450 from wiredtiger/WT-2333Michael Cahill2016-01-2232-105/+152
|\ \ | | | | | | WT-2333 Add a "no_wait" mode to WT_SESSION::drop.
| * | WT-2333 Update "lock_fail" warning for clarity.Michael Cahill2016-01-222-3/+5
| | |
| * | Merge branch 'develop' into WT-2333Michael Cahill2016-01-228-133/+129
| |\ \ | |/ / |/| |
* | | Merge pull request #2454 from wiredtiger/WT-2275-fileMichael Cahill2016-01-226-127/+105
|\ \ \ | | | | | | | | WT-2275 Convert a file URI truncate into a range truncate.
| * | | WT-2275 Update the upgrading documentation.Susan LoVerso2016-01-211-0/+12
| | | |
| * | | WT-2275 Convert a file URI truncate into a range truncate.Susan LoVerso2016-01-215-127/+93
| | |/ | |/|
* | | Merge pull request #2445 from wiredtiger/WT-2338sueloverso2016-01-212-6/+24
|\ \ \ | |/ / |/| | WT-2338 Skip pre-allocated log files if backup cursor is open.
| * | WT-2338 Add a comment in log pre-allocationAlex Gorrod2016-01-221-0/+6
| | | | | | | | | | | | Explaining why we can't pre-allocate while a hot backup cursor is open.
| * | WT-2338 Skip pre-allocating when backup cursor is open.Susan LoVerso2016-01-211-4/+15
| | |
| * | WT-2338 Skip pre-allocated log files if backup cursor is open.Susan LoVerso2016-01-191-2/+3
| | |
| | * WT-2333 Make the "ret" variable explicit in lock macros.Michael Cahill2016-01-2228-94/+108
| | |
| | * WT-2333 Update auto-generated files.Michael Cahill2016-01-211-1/+1
| | |
| | * WT-2333 Add a "no_wait" mode to WT_SESSION::drop.Michael Cahill2016-01-218-12/+43
| |/ |/|
* | Merge pull request #2449 from wiredtiger/WT-2340Keith Bostic2016-01-202-2/+4
|\ \ | | | | | | WT-2340: Add logging guarantee assertions, whitespace
| * | WT-2340: Add logging guarantee assertions, whitespaceKeith Bostic2016-01-202-2/+4
|/ /
* | Merge pull request #2448 from wiredtiger/WT-2339Keith Bostic2016-01-202-26/+38
|\ \ | | | | | | WT-2339: format post-rebalance verify failure
| * | WT-2339: format post-rebalance verify failureKeith Bostic2016-01-201-17/+18
| | | | | | | | | | | | | | | | | | | | | | | | Never trust cell 0 on an internal page, overflow key or not. When walking an internal page, immediately schedule its blocks to be freed, don't give the impression there's any ordering requirement with reading the page.
| * | WT-2339: format post-rebalance verify failureKeith Bostic2016-01-201-9/+20
| | | | | | | | | | | | | | | Add additional debugging information, display the out-of-order keys when the sort order has been violated.
* | | Merge pull request #2444 from wiredtiger/WT-2296sueloverso2016-01-203-7/+17
|\ \ \ | | | | | | | | WT-2296 Yield instead of sleep if the wrlsn thread is finding work.
| * | | WT-2296 Use WT_THOUSAND.Susan LoVerso2016-01-191-1/+1
| | | |
| * | | WT-2296 Yield instead of sleep if the wrlsn thread is finding work.Susan LoVerso2016-01-193-7/+17
| | |/ | |/|
* | | Merge pull request #2443 from wiredtiger/WT-2332Alex Gorrod2016-01-211-0/+7
|\ \ \ | | | | | | | | WT-2332 Add logging guarantee assertions.
| * | | WT-2332 Remove if statement and merge it into the assert.Susan LoVerso2016-01-191-4/+7
| | | |
| * | | WT-2332 Add logging guarantee assertions.Susan LoVerso2016-01-191-0/+4
| |/ /
* | | WT-2267 Fix warningSusan LoVerso2016-01-201-1/+1
| | |
* | | Merge pull request #2440 from wiredtiger/WT-2267sueloverso2016-01-207-58/+152
|\ \ \ | |_|/ |/| | WT-2267 - WTPERF Throttle implementation
| * | WT-2267 whitespaceSusan LoVerso2016-01-201-1/+1
| | |
| * | WT-2267 Minor updates to comments.Susan LoVerso2016-01-203-11/+13
| | |
| * | WT-2267 - WTPERF Throttle implementationDavid Hows2016-01-207-58/+150
| | |
* | | Merge pull request #2441 from wiredtiger/WT-1517Michael Cahill2016-01-205-19/+118
|\ \ \ | | | | | | | | WT-1517: schema format edge cases
| * | | WT-1517 Add a check to the C packing test.Michael Cahill2016-01-201-1/+2
| | | | | | | | | | | | | | | | Since Python operates in raw mode, it sidesteps the usual processing.
| * | | WT-1517 whitespace.Michael Cahill2016-01-201-3/+3
| | | |
| * | | WT-1517 Set the packing size = 1 by default in the fast path.Michael Cahill2016-01-203-30/+15
| | | | | | | | | | | | | | | | | | | | | | | | Don't add extra checks into regular processing: we already set size = 1 in normal processing of packing strings if no size is specified. Make the Python packing code match so all test cases pass.
| * | | WT-1517: schema format edge casesKeith Bostic2016-01-192-5/+56
| | | | | | | | | | | | | | | | | | | | | | | | Fixes for the default 's' format, if no size is specified, the size is 1. Add some smoke tests for the 'S' and 's' formats, with counts.
| * | | WT-1517: schema format edge casesKeith Bostic2016-01-191-0/+51
| | | | | | | | | | | | | | | | Add a test for some session.create key/value format edge cases.