aboutsummaryrefslogtreecommitdiff
path: root/src/resolve.c
Commit message (Expand)AuthorAge
* More size and speed improvements in the expression name resolver.drh2017-03-07
* Small size reduction and performance increase in the name resolver routinedrh2017-03-07
* If compiled with SQLITE_INLINE_MEMCPY, all memcpy() calls are replaced withdrh2017-01-19
* Handle some obscure "row value misused" cases that could cause segfaults ordan2016-11-11
* Fix harmless compiler warnings.drh2016-10-05
* Allow deterministic functions in the WHERE clause of a partial index.drh2016-10-03
* Fix SQLITE_OMIT_AUTHORIZATION so that it compiles cleanly.drh2016-09-16
* Catch vector size mismatch problems during name resolution to avoid laterdrh2016-09-05
* Rename the Db.zName field to Db.zDbSName to make it more descriptive and todrh2016-08-18
* Add the experimental SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION compile-time option.drh2016-08-04
* Only disable the one-pass DELETE optimization if the WHERE clause containsdrh2016-05-04
* Improvements to the application-defined function mechanism so that it isdrh2016-02-15
* Remove an unnecessary memset() from the symbol name resolver.drh2016-01-20
* Combine the xFunc and xStep pointers of the FuncDef object into a singledrh2016-01-14
* Fix typos in requirements text and update requirements marks. No changesdrh2015-12-03
* Do not allow table-valued function syntax on ordinary tables and views as thosedrh2015-11-21
* Do not allow rowid in a UNIQUE or PRIMARY KEY constraint. (This restores thedrh2015-09-19
* Omit all use of Expr nodes for TK_AS, as those nodes no longer served a usefuldrh2015-09-05
* Rename SQLITE_FUNC_VARYING to SQLITE_FUNC_SLOCHNG - a more descriptive namedrh2015-09-01
* Not only date/time functions, but also functions like sqlite_version() anddrh2015-08-31
* Make the distinction between truly deterministic functions and date/timedrh2015-08-31
* Merge enhancements from trunk.drh2015-08-26
|\
| * Evaluate expressions only once when the same expression is used in both thedrh2015-08-26
* | Add code to maintain indexes with expression arguments across DELETE, INSERT,drh2015-08-25
* | Changes toward being abld to process indexes on expressions. Not there yet - drh2015-08-25
|/
* Remove some redundant code: Call sqlite3ResolveExprListNames() rather thandrh2015-08-24
* Fix a couple C99-isms that cause compile errors on MSVC.drh2015-08-20
* Fix corner-case memory management issues in table-valued functions. Changedrh2015-08-20
* Correctly handle empty function argument lists on table-valued functions.drh2015-08-20
* A list of arguments following a table name translates into equalitydrh2015-08-19
* Minor refactor of the SrcList object so that it is able to hold the argumentdrh2015-08-19
* Test that the left and right sides of a compound SELECT operator have the sam...dan2015-06-23
* CTEs have never add working rowids. So disallow the use of the "rowid" columndrh2015-05-27
* Remove a faulty assert() statement.drh2015-05-07
* Fix a faulty assert() in the "AS" alias resolution logic of the parser.drh2015-04-23
* In the expression-tree comparison routine, do not compiler Expr.iColumndrh2015-04-17
* Always resolve symbols in all ORDER BY clauses of a compound-SELECT, evendrh2015-04-17
* Fix a faulty assert() statement in the name resolver associated with thedrh2015-04-15
* Correctly handle COLLATE operators applied to COLLATE operators in andrh2015-04-15
* When doing the (dubious) conversion of double-quoted identifier into stringdrh2015-04-15
* Fix a problem with resolving ORDER BY clauses that feature COLLATE clauses at...dan2015-04-04
* Rename the internal "EP_Constant" bitmask to a less misleading "EP_ConstFunc".drh2015-02-09
* Fix over-length source code lines in resolver.c. No logic changes.drh2015-02-09
* If a table is the right operand of a LEFT JOIN, then any column of thatdrh2014-12-04
* Increase the resolution of the second parameter to the likelihood() SQLdrh2014-10-25
* Enhance the automatic index logic so that it creates a partial index whendrh2014-10-24
* Do not flatten aggregate subqueries that contain min() or max() functionsdrh2014-09-15
* Fix typos in comments. No code changes.peter.d.reid2014-09-06
* Updates to evidence marks and requirements. No changes to code.drh2014-08-11
* Update requirements marks. No changes to code.drh2014-08-08