aboutsummaryrefslogtreecommitdiff
path: root/src/parse.y
Commit message (Expand)AuthorAge
* Enhance the LIKE/GLOB query optimization so that it works as long as theredrh2010-07-22
* Fix a parser bug that was causing the relative precedence of LIKE and <drh2010-07-19
* Change a comment inside a block of code in parse.y from C++ to C style.dan2010-07-15
* Make the result of an IN or NOT IN expression with an empty set on the drh2010-07-14
* Restore the incorrect legacy ON INSERT syntax to the parser as a no-op.drh2009-12-09
* Fix a couple of compiler warnings under MSVC.shaneh2009-12-03
* Suppress excess OP_Null opcodes caused by binary IS or IS NOT operators drh2009-11-12
* Remove the obsolete "$Id:$" RCS identifier strings from the source code.drh2009-11-10
* Add evidence marks to parse.y. Fix a broken evidence link in e_fkey.tcl.drh2009-10-21
* Add missing comments to fkey.c. Also, change the terminology used for comment...dan2009-09-23
* Generalize the IS and IS NOT operators so that their right-hand side can bedrh2009-09-23
* Factor the UMINUS and UPLUS tokens out of the parser so that the parserdrh2009-09-22
* The NO ACTION action really should be no-action and not RESTRICT.drh2009-09-22
* Fix compilation with OMIT_TRIGGER defined. Ticket [1ff6d29030e9757d052af0f394...dan2009-09-21
* Check in implementation of foreign key constraints.dan2009-09-19
* Removed some warnings from the MSVC compile. (CVS 6965)shane2009-08-10
* Make explicit the restrictions on UPDATE, DELETE, and INSERT statement syntaxdrh2009-07-03
* Do not ignore alias "a" in a query of the form "SELECT ... FROM (...) AS a" F...danielk19772009-07-01
* Reorganize and cleanup the prepared statement object. Remove code that hasdrh2009-06-19
* The lemon parser generator now inserts yytestcase() macros on reduce actiondrh2009-06-12
* Enable the SQLITE_LIMIT_FUNCTION_ARG limiter. (CVS 6753)drh2009-06-12
* An additional memory leak in the parser fixed. Ticket #3911. (CVS 6751)drh2009-06-12
* Modifications to the parser to eliminate unreachable code. (CVS 6749)drh2009-06-12
* Additional refinements to Expr handling. Restore compression of triggerdrh2009-05-28
* Simplifications to the Expr object: Remove Expr.span completely and convertdrh2009-05-27
* Enhance the parser to allow nested parentheses in the module argument ofdrh2009-05-11
* Record within the Token structure itself whether or not the token hasdrh2009-05-01
* Allow "default" to be a keyword used by PRAGMA statements. (CVS 6454)drh2009-04-06
* Fix the PRAGMA parser so that it can accept negative numbers in parentheses,drh2009-04-03
* Changes to insure that lookaside memory allocations are never used to hold drh2009-03-24
* Allow the keyword INDEXED to be used as the name of a table or index ordrh2009-03-22
* Removed compiler warnings from MSVC builds. Ticket #3701. (CVS 6335)shane2009-03-05
* Changes to reduce the heap space consumed by triggers, views and tables in th...danielk19772009-02-19
* Add test cases to make sure that keywords that we say can be used asdrh2009-01-29
* Allow recently added keywords 'savepoint' and 'release' to be used as databas...danielk19772009-01-16
* Add the savepoint feature. This feature is largely untested at this point. (C...danielk19772008-12-17
* More explicit type casting to silence VC++. (CVS 6006)drh2008-12-10
* Fix two unused-parameter warnings in the parser. (CVS 5990)drh2008-12-08
* Allow the entire FROM clause of a SELECT statement to be in parentheses. (CVS...drh2008-12-03
* Fix a bug in pragma table_info. Column default values specified as negative n...danielk19772008-10-23
* Fix to sqlite3DbMallocRaw() when SQLITE_OMIT_LOOKASIDE is defined so thatdrh2008-10-11
* Fix a OOM segfault in the BETWEEN operator parsing - discovered whiledrh2008-10-11
* Further simplifications of the code for the LIMIT clause on an UPDATE or DELE...shane2008-10-10
* Change 'pragma foreign_key_list' to return some extra information. (CVS 5795)danielk19772008-10-10
* Simplify the parser reduction code for the LIMIT clause on an UPDATE ordrh2008-10-10
* Updated LIMIT support for DELETE/UPDATE. Omit option changed to SQLITE_ENABL...shane2008-10-10
* Initial support for LIMIT clause on DELETEs and UPDATEs. Changes likely with...shane2008-10-07
* Allow INDEXED BY and NOT INDEXED to be used in UPDATE and DELETE statements. ...danielk19772008-10-06
* Allow INDEXED BY and NOT INDEXED clauses in SELECT statements. (CVS 5766)danielk19772008-10-06
* Refactor the name resolution procedures in the code generator. (CVS 5569)drh2008-08-20