aboutsummaryrefslogtreecommitdiff
path: root/src/resolve.c
Commit message (Expand)AuthorAge
* Fix the likely(), unlikely(), and likelihood() functions so that they havedrh2019-08-22
* Provide the SQLITE_DIRECTONLY flag for app-defined functions that prohibitsdrh2019-08-15
* Ensure that SQLite does not attempt to process incompatible window functions ...dan2019-08-15
* Fix harmless compiler warnings.drh2019-08-08
* Fix a case of the Expr.affinity to Expr.affExpr refactor that was misseddrh2019-08-08
* Refactor field Expr.affinity into Expr.affExpr to avoid confusion with otherdrh2019-08-05
* Fix a problem with renaming a table when a view or trigger within the schema ...dan2019-08-05
* Fix a problem in ALTER TABLE triggered by views or triggers that include the ...dan2019-08-01
* Consolidate the removal of Window objects from the Select.pWin list intodrh2019-07-22
* Remove Window objects from the corresponding Select.pWin list when they are d...dan2019-07-22
|\
| * Remove Window objects from the corresponding Select.pWin list when they are d...dan2019-07-22
| * Make sure any window definitions in an ORDER BY clause are removed fromdrh2019-07-20
* | Fix a problem with renaming tables when the schema contains an invocation of ...dan2019-07-22
|/
* Fix a problem with renaming a table when the schema contains an invocation of...dan2019-07-19
* Fix error handling for the case where a window function is passed the wrong n...dan2019-07-13
* Rework the FILTER clause implementation to share more code with window functi...dan2019-07-13
* Minor performance improvement in sqlite3ExprDeleteNN().dan2019-07-10
* Add tests for the FILTER clause. And a bugfix.dan2019-07-03
* Experimental implementation of FILTER clause for aggregate functions.dan2019-07-02
* Improved interface to double-quoted string literal enabling/disabling.drh2019-06-17
* Add SQLITE_DBCONFIG options LEGACY_ALTER_TABLE, NO_DQS_SCHEMA, and NO_DQS.drh2019-06-14
* Handle expressions like "expr IS TRUE COLLATE xyz" in the same way as "expr I...dan2019-06-12
* The affinity of the unlikely() function and its cousins should be "none".drh2019-06-11
* A minor variation on check-in [1685610ef8e0dc] which (hopefully) makes thedrh2019-05-20
* Disallow string constants enclosed in double-quotes within new CREATE TABLE a...dan2019-05-20
* Fix a stack overflow that could occur when renaming a table that has a trigge...dan2019-04-29
* Recover a some of the performance lost by window function alias fix twodrh2019-03-29
* Prevent aliases of window functions expressions from being used as arguments ...dan2019-03-28
* Fix a problem with a window function in a correlated sub-query where at least...dan2019-03-22
* Internally, remove all references to a Window object that belongs to an expre...dan2019-02-22
* Build and test fixes for SQLITE_OMIT_WINDOWFUNC builds.dan2019-02-11
* Fix a problem with renaming a table within a schema that contains a composite...dan2019-01-23
* Fix problems with sub-selects in WINDOW definitions. Also rename-column opera...dan2019-01-23
* Fix a problem with fix [b4b57413].dan2019-01-16
* Fix a problem with renaming a column that is used as part of an ORDER BY on adan2019-01-16
* Raise an error if the argument to VACUUM INTO is an identifier.drh2019-01-02
* Fix harmless compiler warnings.drh2018-12-14
* Further refinements to the sqlite3_normalized_sql() interface. TH3 nowdrh2018-12-10
* Fix the sqlite3_normalized_sql() interface so that it rendersdrh2018-12-07
* Issue a warning whenever a double-quoted string literal is used.drh2018-12-06
* Omit a line of code that has no affect on the outcome.drh2018-12-02
* Do not allow direct access to internal-use SQL functions such asdrh2018-11-26
* Minor code simplification.drh2018-09-20
|\
| * A minor code simplification, saved in a branch for future reference.drh2018-09-19
* | Combine the Expr.pTab and Expr.pWin fields into a union named "y". Add a newdrh2018-09-20
|/
* Extend RENAME TABLE to edit triggers and views. Still buggy.dan2018-08-29
* Remove an unnecessary IN_RENAME_COLUMN macro from resolve.c.drh2018-08-25
* Fix a problem with renaming a column that occurs as an "excluded.colname"dan2018-08-24
* Avoid incorrectly replacing tokens that refer to a column being renamed via andan2018-08-24
* Rename internal function sqlite3RenameToken() to sqlite3RenameTokenMap() anddan2018-08-21