aboutsummaryrefslogtreecommitdiff
path: root/src/resolve.c
Commit message (Expand)AuthorAge
...
* Invert the UNTRUSTED_SCHEMA setting to be TRUSTED_SCHEMA.drh2020-01-07
* Refactor names of flags for improved legibility.drh2020-01-06
* Refactor the names of the new controls for restricting what actions the schemadrh2020-01-04
* Invert the SQLITE_FUNC_SAFE bit to be SQLITE_FUNC_UNSAFE. The externaldrh2020-01-03
* When UNSAFE_IN_VIEW is disabled, only allow functions in views that aredrh2020-01-03
* Merge fixes from trunk.drh2020-01-03
|\
| * Fix a possible NULL pointer dereference caused by using a "VALUES(...)" as a ...dan2020-01-03
* | Merge enhancements from trunk.drh2020-01-02
|\|
| * NEVER() and ALWAYS() macros tagging unreachable branches.drh2020-01-02
| * Merge the latest enhancements from trunk.drh2020-01-02
| |\
| | * New test-only SQL functions: implies_nonnull_row(), expr_compare(), anddrh2020-01-01
| * | Merge recent enhancements from trunk.drh2019-12-31
| |\|
| * | Merge fixes from trunk.drh2019-12-13
| |\ \
| * | | Tie up the loose ends in the ExprList size reduction.drh2019-12-13
| * | | Work toward reducing the incremental size of an ExprList object to 24-bytedrh2019-12-12
| * | | Change the name of the Expr.a.zName field to zEName, so that it has a namedrh2019-12-12
* | | | Experimental branch with new sqlite3_db_config() options that could possibledrh2019-12-31
| |_|/ |/| |
* | | Fix a problem involving window function aliases being referenced from sub-sel...dan2019-12-27
| |/ |/|
* | Ensure that there is a containing SELECT statement when processing adrh2019-12-13
|/
* Factor out the conditional (which is only true for rare errors) from thedrh2019-12-12
* Rename a local variable to avoid masking a function parameter and thusdrh2019-12-09
* The previous check-in was not quite correct, and introduced a new problemdrh2019-12-09
* Ensure that the SrcList_item.colUsed field is set correctly (set to have adrh2019-12-09
* Fix incorrect column-usage accounting associated with generated columnsdrh2019-12-08
* Fix a harmless compiler warning.drh2019-11-22
* Whenever a generated column is used, assume that all columns are used.drh2019-11-21
* Always disallow the use of non-deterministic functions in CHECK constraints,drh2019-10-30
* Minor adjustments for clarity and test coverage.drh2019-10-23
* Initial experimental code for generated column support. Non-functional.drh2019-10-16
* Test for an OOM condition in resolveAlias().drh2019-09-26
* Fix a window-functions problem that could occur if an ORDER BY clause contain...dan2019-09-26
* 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