summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Rearrange directories to keep Makefile.am with the sources.Michael Cahill2011-09-0116-73/+52
* Fix a bug handling projection plans that need to skip columns.Michael Cahill2011-09-021-1/+2
* Make the timestamp after "WT_TEST" optional when running tests (default off).Michael Cahill2011-09-022-18/+33
* Add 'overwrite' to cursor config for test_schema.Michael Cahill2011-09-021-3/+3
* Use a unique error code for attempting to overwrite an existing value (not EI...Michael Cahill2011-09-024-4/+9
* When calculating projection plans for complex tables, scan key columns as wel...Michael Cahill2011-09-021-24/+46
* Set the key/value-is-set flags when values are calculated for dependent cursors.Michael Cahill2011-09-023-11/+15
* Add a cursor.reset operation to the Python API so that tests can use a cursor...Michael Cahill2011-09-022-1/+10
* Replace subprocess calls in the test suite with Python equivalents.Michael Cahill2011-09-021-6/+12
* Use automake for all builds, don't maintain Makefiles manually.Michael Cahill2011-08-3018-142/+68
* Fix various memory leaks identified by valgrind.Michael Cahill2011-08-305-6/+19
* Turn on autoconf's large file support (required for 64-bit off_t on Linux).Michael Cahill2011-08-302-1/+2
* Finish implementation of indices -- populate them as the primary is updated, ...Michael Cahill2011-08-1620-227/+847
* Add some missing error checking to extension functions in the Python API.Michael Cahill2011-08-291-4/+14
* Make copyright notices in build scripts consistent with the rest of the tree.Michael Cahill2011-08-263-3/+3
* Search for swig during configure for Python builds.Michael Cahill2011-08-262-1/+6
* Rename __wt_conn_stats to __wt_connection_stats so the sorting is not locale-...Michael Cahill2011-08-269-18/+18
* Port to Linux -- need -ldl for dlopen, can't use optreset.Michael Cahill2011-08-261-0/+1
* Put version information into m4 to avoid post-processing the configure script.Michael Cahill2011-08-2615-3231/+65
* ../src/btree/bt_desc.c:60:22: error: comparison between signed and unsigned i...Michael Cahill2011-08-263-7/+7
* Turned on GCC "-Wpadded".Michael Cahill2011-08-098-96/+93
* Mark WT_COL_RLE as "packed" to save 4 bytes in memory per repeated item in va...Michael Cahill2011-08-0911-54/+37
* Add some sanity checking assertions to column search.Michael Cahill2011-08-121-0/+5
* Use "memsize" everywhere, don't mix with "mem_size".Michael Cahill2011-08-185-20/+20
* Use size_t for size calculations, only store uint32_t in structs.Michael Cahill2011-08-1831-161/+163
* Add libtool to the build.Michael Cahill2011-08-268-25/+55
* Fix a leak caused by copying the schema table config.Michael Cahill2011-08-241-8/+7
* Add a local version of getopt for the utilities program, plus a scriptKeith Bostic2011-08-3115-97/+128
* FreeBSD getopt.cKeith Bostic2011-08-311-0/+135
* Return (short) on-page data for row-store cursor calls.Keith Bostic2011-08-311-4/+11
* Don't copy on-page information into the WT_CURSOR_BTREE buffer if it'sKeith Bostic2011-08-312-6/+26
* Don't bother allocating WT_BUF space and/or checking lengths when returningKeith Bostic2011-08-313-11/+13
* Cursors maintain hazard references on pages: don't copy the update orKeith Bostic2011-08-311-11/+16
* Minor shuffling for consistency; don't skip to the next insert entry, we doKeith Bostic2011-08-311-4/+1
* Now that cursors have real semantics, we have to get the cursor back toKeith Bostic2011-08-311-0/+3
* If no open Btree handles were found, ret was left to WT_NOTFOUND so the entryKeith Bostic2011-08-311-8/+13
* Insert wasn't checking to see if the returned record was deleted, so deletedKeith Bostic2011-08-311-1/+18
* Ignore the dlopen errors valgrind is reporting on FreeBSD 8.2.Keith Bostic2011-08-311-1/+30
* Move {row,col}_put.c -> {row,col}_modify.c, match the function names.Keith Bostic2011-08-313-2/+2
* Remove __wt_walk_last, __wt_walk_set, they're no longer used by anyKeith Bostic2011-08-312-154/+0
* Update spelling exceptions.Keith Bostic2011-08-311-0/+5
* Now that the cursor iteration code is re-written, We no longer need theKeith Bostic2011-08-315-38/+25
* Final commit of new cursor code -- prev/next cursor motions now work withKeith Bostic2011-08-318-254/+279
* Display the record number for variable-length column-store entries.Keith Bostic2011-08-311-7/+8
* Add __WT_COL_INSERT_SLOT.Keith Bostic2011-08-301-11/+14
* Intermediate commit of new cursor code. Both prev/next cursor motionsKeith Bostic2011-08-3019-803/+406
* For now, don't insert records in fixed-length column-store files: anKeith Bostic2011-08-301-0/+11
* Clean up the error message: we don't know if it was deleted or not.Keith Bostic2011-08-301-2/+2
* Don't use a signed character for printing, it gets extended to aKeith Bostic2011-08-301-2/+2
* Quit deleted fixed-length column-store records for now. The problem isKeith Bostic2011-08-301-0/+11