aboutsummaryrefslogtreecommitdiff
path: root/test/table.test
Commit message (Expand)AuthorAge
* Remove unnecessary "www." prefixes on domain names in URLs.drh2025-04-10
* Add string_agg(X,Y) as an alias for group_concat(X,Y), for compatibilitydrh2023-10-20
* Add the SQLITE_DEFAULT_DEFENSIVE compile-time option. Fix up test casesdrh2018-11-07
* When running a CREATE TABLE AS, make the initial temporary sqlite_master entry drh2015-09-09
* Ensure that the CREATE TABLE AS statement correctly undoes partial changesdrh2015-06-16
* Remove unnecessary parser error count increments. Let the sqlite3ErrorMsg()drh2015-04-17
* Make sure that NULL results from OP_Column are fully and completely NULLdrh2014-11-05
* A simpler fix for ticket [3a88d85f36704eebe1] - one that uses less code.drh2014-08-06
* Ensure that aggregate functions are not used when evaluating a defaultdrh2014-08-05
* Standardize the error messages generated by constraint failures to a formatdrh2013-11-05
* If ENABLE_STAT3 is defined but ENABLE_STAT4 is not, have ANALYZE create and p...dan2013-08-12
* Fix a couple of problems in code related to sqlite_stat4.dan2013-08-05
* Change the ANALYZE command so that it no longer tried to delete unuseddrh2011-10-07
* Add retry logic for AV defense to winOpen. Also, refactor test suite to allo...mistachkin2011-08-02
* Unset some global TCL variables prior to use in test where prior tests candrh2010-05-03
* Remove leftover "breakpoint" commands from test scripts. Also remove blankdrh2009-06-05
* Rework the logic that generates a schema for tables created using drh2009-05-11
* Simplifications to the symbol table implementation in hash.c. For very smalldrh2009-04-28
* Fix for #3719. When synthesizing a CREATE TABLE statement as as result of a "...danielk19772009-03-14
* Allow recently added keywords 'savepoint' and 'release' to be used as databas...danielk19772009-01-16
* Fixes to the test suite (no code changes) so that quick.test runs with OMIT_A...danielk19772007-10-09
* Allow CREATE TABLE to occur while other queries are running. DROP TABLE isdrh2007-05-02
* Remove use of the "clock" command in the test suite so that the testsdrh2006-09-01
* Properly record the names of triggers even if the name is quoted.drh2006-03-29
* Bug fix in the IF NOT EXISTS logic. (CVS 2858)drh2006-01-04
* Add support for CREATE TABLE IF NOT EXISTS. (CVS 2847)drh2005-12-29
* Add support for DROP TABLE IF EXISTS. (CVS 2843)drh2005-12-29
* Avoid a memory leak and/or assertion failure when parsing a table drh2005-09-10
* Fix a memory leak that occurs when a CREATE TABLE that contains adrh2005-08-13
* Add the SQLITE_OMIT_TEMPDB compile time macro. (CVS 2427)danielk19772005-03-29
* Modifications and bugfixes so that the test suite passes with the TCL stateme...danielk19772005-01-24
* Test script changes: Bug fix and cleanup on ioerr tests. Also, don't use TCL ...danielk19772005-01-22
* Modify test scripts to work when SQLITE_OMIT_SUBQUERY (along with other OMIT ...danielk19772005-01-21
* fulltest runs now, but still finds a memory leak. (CVS 2150)drh2004-11-23
* Fix a bug involving balance_shallow() and the sqlite_master table. (CVS 2143)danielk19772004-11-23
* Ensure tables cannot be created/dropped when btree cursors are open. (CVS 2085)danielk19772004-11-10
* Have "DEFAULT CURRENT_TIME" & co. work even if SQLITE_OMIT_DATETIME_FUNCS is ...danielk19772004-11-09
* Port the "DEFAULT CURRENT_TIME" etc. functionality from an earlier fork of sq...danielk19772004-11-09
* Update tests to work even if some features of the library are disabled. (CVS ...drh2004-11-03
* Progress towards getting prepared statements and CREATE and DROP to playdrh2004-07-24
* Update sqlite3_column_decltype() to return NULL as the declartion type fordanielk19772004-06-21
* Change the name of the TCL command from "sqlite" to "sqlite3" so that bothdrh2004-06-19
* (1) Modifications to the user-function interface and (2) Internal changesdanielk19772004-06-12
* Tables created with the CREATE TABLE <tbl> AS SELECT ... syntax now inheritdanielk19772004-06-07
* Update the typeof() operator to respect manifest types. (CVS 1450)danielk19772004-05-24
* Get more tests running. (CVS 1409)drh2004-05-19
* Better error messages on constraint violations. Additional tests and bug fixesdrh2003-01-29
* Optimizations to the BTree module for a modest speed improvement. (CVS 810)drh2003-01-04
* Parse foreign key constraints and populate internal data structuresdrh2002-08-31
* Make the distinction between text and numeric data. (CVS 710)drh2002-08-13