summaryrefslogtreecommitdiff
path: root/src/schema/schema_drop.c
AgeCommit message (Expand)Author
2014-01-07Update copyright notices for 2014.Keith Bostic
2013-12-05Simplify drop: allow the lower level code to take care of locking. Avoid rec...Michael Cahill
2013-12-03whitespaceKeith Bostic
2013-11-05Create a Python pass for source code style checking (to eventually replace s_...Michael Cahill
2013-06-18Generalize the cursor "overwrite" configuration to apply to insert, update an...Michael Cahill
2013-06-04Make data-sources responsible for their own metadata entries.Keith Bostic
2013-06-03Change __wt_schema_get_source() to not call __wt_bad_object_type itself,Keith Bostic
2013-06-03We have to remove the data-source entry from the metadata file duringKeith Bostic
2013-05-06Some session methods checked URIs in the WiredTiger name space in theKeith Bostic
2013-04-24Merge branch 'develop' into lsm-ckpt-experimentsMichael Cahill
2013-04-04Write some custom data source documentation based on my Berkeley DB code.Keith Bostic
2013-04-04Call LSM methods directly instead of using WT_DATA_SOURCE implementation.Keith Bostic
2013-04-03Merge branch 'develop' into data-sourceKeith Bostic
2013-04-03First set of changes to make WT_DATA_SOURCE work better (row-store isKeith Bostic
2013-04-02Merge branch 'basho' into lsm-ckpt-experimentsMichael Cahill
2013-03-25Merge branch 'develop' into data-handlesMichael Cahill
2013-03-25Merge branch 'develop' into data-handlesMichael Cahill
2013-03-21Change LSM drops in the background to avoid blocking application threads.Michael Cahill
2013-02-26In drop, don't release a table we didn't get.Michael Cahill
2013-02-26Add a reference count to tables, only free if the table is not in use.Michael Cahill
2013-02-22Add a schema generation number to avoid using stale table structures.Michael Cahill
2013-01-01Update copyright notice to 2013.Keith Bostic
2012-11-30Fix warnings from "gcc -Wsign-conversion". Mostly this involved changing loo...Michael Cahill
2012-10-18Change direct calls to __wt_curfile_open to generic __wt_open_cursor.Michael Cahill
2012-10-18Apply operations to column group and index data sources.Michael Cahill
2012-09-25Merge branch 'develop' into data-handlesMichael Cahill
2012-09-25Clear the btree handle at the beginning of a drop operation.Michael Cahill
2012-09-24Fix the change to track exclusive handles for drop operations: always log theMichael Cahill
2012-09-24If a drop fails to acquire all of the handle locks it needs, make sure itMichael Cahill
2012-09-18Replace session->btree with a data handle.Michael Cahill
2012-09-18Split general WT_BTREE fields into WT_DATA_HANDLE.Michael Cahill
2012-08-02Hookup the LSM data source to the cursor implementation.Michael Cahill
2012-07-31Add the ability to access unnamed checkpoints, issue #271.Keith Bostic
2012-07-31Don't repeatedly look up btree handles for schema operations.Michael Cahill
2012-07-26Metadata tracking must be resolved while holding the schema lock.Michael Cahill
2012-07-20Check for incomplete tables consistently.Michael Cahill
2012-06-04Fix races in table-level schema operations.Michael Cahill
2012-06-01Add handle locking to create and drop operations to avoid races.Michael Cahill
2012-05-04Don't cache btree handles in the schema layer: always look up handles by name...Michael Cahill
2012-05-04Move the "close_any_btree" logic into conn_btree.cMichael Cahill
2012-04-27Keep a "file:" URI in btree handles rather than a raw filename.Michael Cahill
2012-03-11Add an interface for "data source" extensions.Michael Cahill
2012-04-27Switch naming of "schema file/table" to metadata file.Michael Cahill
2012-04-26Replace local "ret" declarations with WT_DECL_RET.Keith Bostic
2012-02-17../src/schema/schema_drop.c:28: error: ‘ret’ may be used uninitialized in...Michael Cahill
2012-02-16Move "root:F" and "version:F" entries for files into the value for "file:F", ...Michael Cahill
2012-02-08Change __drop_table to not return WT_NOTFOUND if the table isn't foundKeith Bostic
2012-02-02Fixes to make test_schema02 pass. Much more careful checking and cleanup dur...Michael Cahill
2012-01-31Add WT_CURSOR::uri containing the cursor source URI, primarily in support of ...Michael Cahill
2012-01-23Merge WT_BUF into WT_ITEM.Michael Cahill