| Commit message (Expand) | Author | Age | Files | Lines |
* | Switch log_printf to use a log record in the same format as transactional ope... | Michael Cahill | 2013-11-21 | 1 | -4/+10 |
* | Null out closed handles in Java, and detect nulled handles on use. refs #485. | Don Anderson | 2013-11-18 | 1 | -12/+254 |
* | Add a test case for Java auto close feature. | Alex Gorrod | 2013-10-25 | 1 | -0/+1 |
* | Use the event handler to capture stderr, stdout. | Don Anderson | 2013-10-24 | 1 | -2/+73 |
* | Remove Python custom error and message callback implementations. | Alex Gorrod | 2013-08-28 | 1 | -62/+1 |
* | Merge branch 'develop' into java-auto-close | Alex Gorrod | 2013-08-15 | 19 | -6418/+30 |
|\ |
|
| * | Merge branch 'develop' into logging | Susan LoVerso | 2013-07-17 | 16 | -6407/+14 |
| |\ |
|
| | * | Pass any configured Python prefix through to the Python install step. | Michael Cahill | 2013-07-17 | 1 | -1/+1 |
| | * | Fix "make install" of Python. Remove old code and restructure the Python sou... | Michael Cahill | 2013-07-17 | 16 | -6407/+14 |
| * | | Merge branch 'develop' into logging | Michael Cahill | 2013-07-11 | 1 | -2/+6 |
| |\ \
| | |/ |
|
| | * | Install the Python module as part of "make install". | Michael Cahill | 2013-07-09 | 1 | -2/+6 |
| * | | First pass that compiles. | Susan LoVerso | 2013-05-15 | 1 | -0/+1 |
| |/ |
|
| * | Suppress warnings building SWIG-generated Python code. | Michael Cahill | 2013-05-08 | 1 | -1/+1 |
| * | Move pack/unpack methods into the extension API, because extensions shouldn't... | Michael Cahill | 2013-04-22 | 2 | -6/+0 |
| * | Change the extension function names to "init" and "terminate" so that API cha... | Michael Cahill | 2013-04-19 | 2 | -4/+4 |
| * | Add an extension "unload" entry point, configured with "unload" and with | Keith Bostic | 2013-04-18 | 2 | -2/+4 |
| * | Minor build fixes: don't export WT_CONFIG_ITEM with SWIG, uninitialized 'ret'. | Michael Cahill | 2013-04-18 | 1 | -1/+1 |
| * | Remove WT_EXTENSION_CONFIG, export WT_CONFIG_ITEM instead. | Keith Bostic | 2013-04-17 | 1 | -0/+1 |
| * | Replace wiredtiger_extension_api() with WT_CONNECTION.get_extension_api. | Keith Bostic | 2013-04-17 | 1 | -4/+5 |
| * | Data source cleanup: fix some build warnings, exclude new function from the J... | Michael Cahill | 2013-04-12 | 1 | -0/+1 |
| * | Support new configuration options added by the applications, using a new | Keith Bostic | 2013-04-09 | 1 | -0/+1 |
| * | Make WiredTiger extension functions available to linked-in modules via | Keith Bostic | 2013-04-09 | 2 | -1/+1 |
* | | Add implementation for close callbacks. Add event callbacks to Python. | Alex Gorrod | 2013-04-17 | 1 | -2/+74 |
|/ |
|
* | Add a test case for Java cursor issue refs #493 | Alex Gorrod | 2013-03-26 | 1 | -0/+1 |
* | Fix get_key/value in the Java API for complex cursors. | Michael Cahill | 2013-03-26 | 1 | -441/+439 |
* | Add Java documentation for Session::open_cursor | Alex Gorrod | 2013-03-25 | 1 | -0/+5 |
* | Install wiredtiger.jar when running "make install". | Michael Cahill | 2013-03-14 | 1 | -3/+5 |
* | Ignore warnings when building the Python SWIG wrapper. | Alex Gorrod | 2013-03-13 | 1 | -9/+1 |
* | Improvements for the Java API documentation: create a Java API module, link t... | Michael Cahill | 2013-02-25 | 2 | -8/+31 |
* | Fix copyright notices in Java source code. | Alex Gorrod | 2013-02-19 | 7 | -28/+87 |
* | Add comments to the Java methods defined in the SWIG interface. | Alex Gorrod | 2013-02-19 | 1 | -3/+226 |
* | Update Java Cursor API naming to reflect ByteArray semantics. | Alex Gorrod | 2013-02-19 | 9 | -136/+429 |
* | Fix library path for Java make check on Linux. | Alex Gorrod | 2013-02-14 | 1 | -1/+1 |
* | Fix conditional compilation of JUnit tests. | Alex Gorrod | 2013-02-14 | 1 | -2/+4 |
* | Update Java cursors to use packing code. Also enhance JUnit usage. | Alex Gorrod | 2013-02-13 | 4 | -74/+182 |
* | Update Java structure packing implementation. | Alex Gorrod | 2013-02-12 | 7 | -320/+352 |
* | Add a Java implementation of packed formats. | Alex Gorrod | 2013-02-08 | 8 | -16/+623 |
* | Add in examples to Java build. | Alex Gorrod | 2013-01-25 | 1 | -0/+7 |
* | Fix Java build to work with recent autoconf. | Alex Gorrod | 2013-01-24 | 1 | -11/+12 |
* | Merge branch 'updevelop' into develop. Manually merged. | Alex Gorrod | 2013-01-24 | 13 | -17/+26 |
|\ |
|
| * | Allow examples to run in parallel: give each a unique home directory. | Michael Cahill | 2013-01-08 | 1 | -0/+3 |
| * | Fixes for automake 1.3.x: don't use $(srcdir) in TESTS and avoid the new para... | Michael Cahill | 2013-01-07 | 2 | -1/+6 |
| * | Update copyright notice to 2013. | Keith Bostic | 2013-01-01 | 11 | -12/+12 |
| * | Disable some GCC warning flags for the SWIG-generated Python code. | Michael Cahill | 2012-12-10 | 1 | -4/+5 |
* | | Move generated Java files into a subdirectory. | Alex Gorrod | 2013-01-24 | 2 | -10/+11 |
* | | Have compare return an int not a bool. Add Java implementation for Cursor::co... | Alex Gorrod | 2012-11-29 | 1 | -2/+6 |
* | | Rename cursor equals to compare in Java API. | Alex Gorrod | 2012-11-29 | 1 | -4/+4 |
* | | Merge remote-tracking branch 'upstream/develop' into develop | Alex Gorrod | 2012-11-28 | 3 | -110/+155 |
|\ \
| |/ |
|
| * | Add a "size of checkpoint" statistic. | Michael Cahill | 2012-11-16 | 1 | -13/+34 |
| * | Switch the Python API to not allocate objects explicitly, and instead leave t... | Michael Cahill | 2012-10-24 | 1 | -88/+104 |