summaryrefslogtreecommitdiff
path: root/examples
Commit message (Collapse)AuthorAgeFilesLines
* WT-2104 Add log_flush example usage in 3.0.Susan LoVerso2015-09-161-0/+1
|
* We've got a WT_SESSION, use it instead of cursor->session.Keith Bostic2015-03-221-3/+2
|
* Switch uses of wiredtiger_strerror() for WT_SESSION.strerror().Keith Bostic2015-03-2011-31/+42
|
* Clean up the #includes.Keith Bostic2015-03-191-4/+2
|
* Add LZ4 to the documentation.Keith Bostic2015-03-182-0/+28
|
* Include the variable types in the example code.Keith Bostic2015-03-041-2/+5
|
* Merge pull request #1629 from wiredtiger/session-strerrorMichael Cahill2015-02-182-8/+5
|\ | | | | WT_SESSION.strerror
| * Replace wiredtiger_strerror_r with WT_SESSION.strerror, reference #1516.Keith Bostic2015-02-022-8/+5
| |
* | Add recover config setting and use it in the wt command. #1651Susan LoVerso2015-02-121-3/+3
| |
* | Allow 'wt' command to run with or without recovery. #1651Susan LoVerso2015-02-101-3/+3
|/
* Fixup Java examples.Alex Gorrod2015-01-171-1/+3
|
* Merge branch 'develop' into cursor-equalMichael Cahill2015-01-171-8/+4
|\ | | | | | | | | | | | | Conflicts: src/cursor/cur_std.c src/cursor/cur_table.c src/include/extern.h
| * Merge branch 'develop' into cursor-reconfigureMichael Cahill2015-01-1429-68/+144
| |\
| * \ Merge branch 'develop' into cursor-reconfigureKeith Bostic2014-12-154-74/+15
| |\ \ | | | | | | | | | | | | | | | | Conflicts: src/cursor/cur_metadata.c
| * | | Add support for a WT_CURSOR.reconfigure method, reference #1381.Keith Bostic2014-12-111-8/+4
| | | |
* | | | Merge branch 'develop' into cursor-equalMichael Cahill2015-01-177-66/+97
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | Conflicts: lang/python/wiredtiger.i
| * | | Merge branch 'develop' into java-examplesDon Anderson2015-01-0929-0/+45
| |\ \ \
| * | | | Set of fixes to get most java examples to run. Refs #1526.Don Anderson2015-01-097-57/+83
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In all java examples: declared main() correctly for picky JVMs, print stack traces on exception, brought examples in line with C code. In java examples, use Process.waitFor() to wait for 'rm' to complete. Modified examples to use new record methods (e.g. getKeyRecord() instead of getKeyLong()) when appropriate. Fixed key/value comparisions in ex_log.java example.
| * | | | Fixed a timing error in the example startup, as well as closing handles.Don Anderson2015-01-021-9/+14
| | | | | | | | | | | | | | | | | | | | Refs #1524.
* | | | | Have WT_CURSOR::equals return 1 when cursors are equal, 0 when not.Michael Cahill2015-01-172-5/+3
| | | | |
* | | | | Rename WT_CURSOR compare_equal to be equals.Alex Gorrod2015-01-142-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While here, add a generic cursor equals stub in curstd, rather than redirecting via cursor function pointer lists. Implement the Java API wrapper.
* | | | | Add support for the WT_CURSOR.compare_equal method.Keith Bostic2015-01-102-0/+26
| |/ / / |/| | |
* | | | Merge pull request #1516 from wiredtiger/windows-errorsMichael Cahill2015-01-071-0/+16
|\ \ \ \ | | | | | | | | | | Windows error string support.
| * | | | Add wiredtiger_strerror_r, a thread-safe version of wiredtiger_strerror,Keith Bostic2014-12-241-0/+16
| | |_|/ | |/| | | | | | | | | | | | | | which allows us to support Windows' errors where we have to allocate a buffer to get the error string.
* | | | Copyright notices: add MongoDB, update to 2015.Keith Bostic2015-01-0429-0/+29
| |/ / |/| |
* | | Invalid configuration strings, add some missing commas.Keith Bostic2014-12-241-2/+2
|/ /
* | Merge pull request #1454 from wiredtiger/overflow-relaxMichael Cahill2014-12-153-73/+14
|\ \ | | | | | | Separate the btree maximum key/value sizes from the underlying page size
| * | Fix the example, missing comma.Keith Bostic2014-12-101-1/+1
| | |
| * | Add an example a large leaf-page value overflow configKeith Bostic2014-12-101-0/+7
| | |
| * | Separate the btree maximum key/value sizes from the underlying pageKeith Bostic2014-12-093-73/+7
| |/ | | | | | | | | | | | | | | | | | | | | size, reference #1282. Deprecate the internal_item_max and leaf_item_max configuration strings, replace with internal_key_max, leaf_key_max and leaf_value_max. Remove examples/c/ex_file.c (there's no real need for a "file" URI example, and it's easy to replace the one place the documentation used it).
* | Old-style function declaration.Keith Bostic2014-12-121-1/+1
|/
* Clean up the clean up.Keith Bostic2014-12-041-1/+1
|
* Fix accidental commit of ex_log.c.Susan LoVerso2014-12-021-25/+1
|
* Make pre-alloc a boolean and convert connection log settings to flags.Susan LoVerso2014-12-021-1/+25
|
* Merge branch 'develop' into log-recycleSusan LoVerso2014-12-011-0/+1
|\
| * fix ex_stat compilation on WindowsMark Benvenuto2014-11-261-0/+1
| |
* | Pre-allocate logs into a temporary file to avoid racing. #1373Susan LoVerso2014-11-261-2/+1
|/
* Don't divide by 0 if the file is 0 bytes.Keith Bostic2014-11-221-3/+5
|
* whitespaceKeith Bostic2014-11-201-5/+5
|
* ex_backup.c:58:29: error: unused parameter 'session'Michael Cahill2014-11-191-3/+3
|
* Merge pull request #1370 from wiredtiger/incremental-backupMichael Cahill2014-11-193-1/+327
|\ | | | | Incremental backup
| * Review comments. #1183Susan LoVerso2014-11-182-8/+12
| |
| * Update backup documentation. #1183Susan LoVerso2014-11-141-1/+13
| |
| * Lint.Susan LoVerso2014-11-141-0/+1
| |
| * Add restriction and error checking for having run recovery. UpdateSusan LoVerso2014-11-141-26/+114
| | | | | | | | examples and test. #1183
| * Remove debugging remnant.Susan LoVerso2014-11-131-3/+0
| |
| * Lint.Susan LoVerso2014-11-131-1/+2
| |
| * Changes to allow recovery to be run between incremental backups. #1183Susan LoVerso2014-11-132-0/+223
| |
* | Remove whitespace.Alex Gorrod2014-11-181-1/+0
| |
* | Add support for immutable indices.Alex Gorrod2014-11-182-0/+24
|/ | | | Refs #1344