aboutsummaryrefslogtreecommitdiff
path: root/src/alter.c
Commit message (Expand)AuthorAge
* All temp.sqlite_master to be used as an alias for sqlite_temp_master.drh2016-12-16
* Refactor the Table.nRef field as Table.nTabRef for easier grepping.drh2016-12-14
* Rename the Db.zName field to Db.zDbSName to make it more descriptive and todrh2016-08-18
* Fix ALTER TABLE so that it does not promote the schema version past 3, asdrh2016-07-14
* Reduce the amount of heap required to store many schemas by storing eachdrh2016-02-29
* Eliminate the need for the Column.zDflt (using Column.pDflt instead) to reducedrh2016-02-27
* Improvements to the application-defined function mechanism so that it isdrh2016-02-15
* Code simplification: ALTER TABLE ADD COLUMN always upgrades the file_formatdrh2016-02-09
* Fix an assert() to have a test instead of a side effectpdr2016-02-06
* Improvements to the way that OOM errors are processed.drh2016-02-05
* Remove unnecessary sets of db->mallocFailed.drh2016-02-04
* Change the OP_SetCookie instruction to write the literal P3 value, not thedrh2016-02-01
* Compiler warning fixes: Rename some local variables from "j1" to avoid adrh2015-10-10
* Add the sqlite3VdbeLoadString() and sqlite3VdbeMultiLoad() routines to helpdrh2015-09-03
* Rename SQLITE_AFF_NONE to SQLITE_AFF_BLOB.drh2015-06-02
* Fix an assert() failure that could occur if the internal sqlite3_rename_paren...dan2015-04-28
* Always disallow functions as the DEFAULT of a column. Add assert()s anddrh2015-03-12
* Allow the default value for columns added using ALTER TABLE ADD COLUMN to be ...dan2015-03-11
* Fix typos in comments. No code changes.peter.d.reid2014-09-06
* Make sure the undocumented sqlite_rename_parent() function does notdrh2014-04-14
* Make sure that the difference between two string pointers is passed intodrh2014-02-20
* Add the SQLITE_NOTNULL P5 code for comparison operations - really a compositedrh2014-02-19
* Tweaks in support of VDBE branch test coverage.drh2014-02-19
* Add logic to do test coverage measurements on the VDBE code.drh2014-02-17
* Delete the OP_VerifySchema opcode. Enhance OP_Transaction to do the schemadrh2014-02-06
* When possible, use the multi-column samples in sqlite_stat4 to estimate the n...dan2013-08-06
* Shared-cache mode fixes for views and virtual tables.dan2012-10-04
* Change boolean fields in the Column object from unsigned characters intodrh2012-09-13
* Fix ALTER TABLE RENAME so that it correctly handles triggers that attachdrh2012-02-01
* Create and use a function especially for adding the ParseSchema opcode.drh2011-06-03
* Ensure that it is not possible to add a column to a system table using ALTER ...dan2011-04-01
* Fix some problems that can occur if a trigger has the same name as another da...dan2010-09-29
* Remove the Table.dbMem variable, as it is no longer being used for its origin...dan2010-07-23
* When commands such as ALTER TABLE and VACUUM use SQL internally, make suredrh2010-04-24
* Fix the ALTER TABLE RENAME command so that it converts FOREIGN KEY constraintsdrh2010-02-15
* Remove the obsolete "$Id:$" RCS identifier strings from the source code.drh2009-11-10
* Suppress some harmless compiler warnings.drh2009-10-13
* Fix a segfault that can occur following an OOM fault while renaming adrh2009-10-08
* Various fixes so that "make test" works with OMIT_FOREIGN_KEY, OMIT_TRIGGER a...dan2009-09-29
* When ALTER TABLE RENAME TO is used to change the name of a table that is the ...dan2009-09-26
* Prevent ALTER TABLE from being used to add a column with a REFERENCES clause ...dan2009-09-25
* Combine the OP_Statement and OP_Transaction opcodes.dan2009-09-08
* Changes to support recursive triggers.dan2009-08-28
* Allow virtual tables to be used in shared-cache mode. (CVS 6928)danielk19772009-07-24
* Define a set of constants to use as the "index" argument to sqlite3BtreeGetMe...danielk19772009-06-03
* Additional refinements to Expr handling. Restore compression of triggerdrh2009-05-28
* Simplifications to the Expr object: Remove Expr.span completely and convertdrh2009-05-27
* Move the sqlite3MinimumFileFormat() routine from build.c over to alter.cdrh2009-05-12
* Changes to alter.c to enable full branch coverage testing. (CVS 6513)drh2009-04-16
* Mark an branch in alter.c as always false. Only run the assert() ondrh2009-04-15