summaryrefslogtreecommitdiff
path: root/src/schema/schema_plan.c
Commit message (Expand)AuthorAgeFilesLines
* Boolean conversion pass over schema.Keith Bostic2015-09-241-16/+16
* Copyright notices: add MongoDB, update to 2015.Keith Bostic2015-01-041-0/+1
* Custom-extractor lint, whitespace, reference #1215.Keith Bostic2014-11-041-2/+1
* Only append primary key columns to the index key format once.Michael Cahill2014-10-221-0/+1
* Fix the extractor example, remove a debugging message.Michael Cahill2014-10-171-5/+1
* More implementation of custom extractors: pass the number of columns calculat...Michael Cahill2014-10-101-8/+15
* More implementation of the custom extractor API. Still working on generating...Michael Cahill2014-10-091-2/+13
* Update copyright notices for 2014.Keith Bostic2014-01-071-1/+1
* Always initialize WT_PACK_VALUE before use.Michael Cahill2013-11-251-9/+3
* Clear WT_PACK_VALUE before calling __pack_next. Static analysis can't figure...Michael Cahill2013-11-221-0/+2
* Merge branch 'develop' into fine-grained-durabilityMichael Cahill2013-11-151-4/+8
|\
| * __wt_config_next() has lots of possible errors, check for not-foundKeith Bostic2013-11-141-4/+8
* | Create a Python pass for source code style checking (to eventually replace s_...Michael Cahill2013-11-051-0/+8
|/
* Add a condition variable to signal when LSM checkpoints should start, rather ...Michael Cahill2013-03-201-13/+9
* Update copyright notice to 2013.Keith Bostic2013-01-011-1/+1
* Fix a bug populating column groups with complex schema.Michael Cahill2012-12-111-6/+6
* Revert one of the schema plan logic changes: they weren't necessary and intro...Michael Cahill2012-12-101-6/+6
* Fix a schema bug where value columns appearing in multiple column groups woul...Michael Cahill2012-12-101-7/+11
* More schema layer cleanup:Michael Cahill2012-12-101-5/+14
* Fix compiler warning.Alex Gorrod2012-12-101-2/+1
* Fix a segfault cleaning up a bad index cursor open.Michael Cahill2012-12-101-2/+6
* Use UINT_MAX instead of -1U, it makes lint happy.Keith Bostic2012-11-301-3/+3
* Fix warnings from "gcc -Wsign-conversion". Mostly this involved changing loo...Michael Cahill2012-11-301-10/+11
* Whitespace cleanups, no semantic changes.Keith Bostic2012-08-071-1/+1
* Don't repeatedly look up btree handles for schema operations.Michael Cahill2012-07-311-16/+6
* Fix some functions to work with the new check for returns after "goto err".Michael Cahill2012-05-141-1/+1
* Lint (probably not a bug, but it's safer to initialize cgtree).Keith Bostic2012-05-101-1/+1
* Don't cache btree handles in the schema layer: always look up handles by name...Michael Cahill2012-05-041-13/+27
* Move the "close_any_btree" logic into conn_btree.cMichael Cahill2012-05-041-1/+2
* Replace local "ret" declarations with WT_DECL_RET.Keith Bostic2012-04-261-4/+8
* Fixes to make test_schema02 pass. Much more careful checking and cleanup dur...Michael Cahill2012-02-021-9/+43
* Fix uninitialized warnings with GCC 4.6.Michael Cahill2012-01-311-0/+2
* Fix uninitialized warnings with GCC 4.2.Michael Cahill2012-01-311-0/+4
* Add WT_CURSOR::uri containing the cursor source URI, primarily in support of ...Michael Cahill2012-01-311-1/+1
* Merge WT_BUF into WT_ITEM.Michael Cahill2012-01-231-3/+3
* Update copyright notices to 2012.Keith Bostic2012-01-221-3/+3
* Add the WT_RET_MSG and WT_ERR_MSG macros that output a message and then return.Keith Bostic2012-01-021-11/+8
* Rename __wt_buf_sprintf/__wt_buf_sprintf_append to __wt_buf_fmt andKeith Bostic2011-10-101-11/+9
* Split __wt_buf_sprintf into two functions: __wt_buf_sprintf that sets theKeith Bostic2011-10-101-14/+14
* Restrict visible columns in index cursors, hide primary key columns.Michael Cahill2011-09-261-0/+25
* lint:Michael Cahill2011-09-141-0/+1
* Cleanup some formatting / spelling that crept in.Michael Cahill2011-09-021-3/+3
* When calculating projection plans for complex tables, scan key columns as wel...Michael Cahill2011-09-021-24/+46
* Finish implementation of indices -- populate them as the primary is updated, ...Michael Cahill2011-08-161-14/+38
* unused variables.Keith Bostic2011-08-191-8/+6
* Include all .i files from wt_internal.h.Michael Cahill2011-07-141-2/+0
* Fix schema handling for simple tables: keep the common configuration in the W...Michael Cahill2011-07-091-0/+3
* Implement projection cursors for tables by using the column list from theMichael Cahill2011-07-081-2/+3
* Calculate plans for column projections.Michael Cahill2011-07-081-0/+257