SQLite

Check-in [7cb1c3ba07]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Simplifications to the Expr object: Remove Expr.span completely and convert Expr.token into a char* Expr.zToken. Also simplify the Token object by removing the Token.dyn and Token.quoted fields. (CVS 6681)
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 7cb1c3ba0759539cb035978fdaff6316775986f3
User & Date: drh 2009-05-27 10:31:29.000
Context
2009-05-28
01:00
Additional refinements to Expr handling. Restore compression of trigger expressions. Change Expr.zToken to Expr.u.zToken and added Expr.u.iValue. Remove an unnecessary ExprDup from CHECK constraint processing. And so forth. (CVS 6682) (check-in: 4ac2bdfbb4 user: drh tags: trunk)
2009-05-27
10:31
Simplifications to the Expr object: Remove Expr.span completely and convert Expr.token into a char* Expr.zToken. Also simplify the Token object by removing the Token.dyn and Token.quoted fields. (CVS 6681) (check-in: 7cb1c3ba07 user: drh tags: trunk)
2009-05-25
14:17
Fix the rtree test module so that it works even if the ext/ subfolder is omitted from the tree. (CVS 6679) (check-in: 086206e1f5 user: drh tags: trunk)
Changes
Unified Diff Side-by-Side Diff Patch
Changes to src/alter.c.
Changes to src/attach.c.
Changes to src/build.c.
Changes to src/delete.c.
Changes to src/expr.c.
Changes to src/func.c.
Changes to src/parse.y.
Changes to src/pragma.c.
Changes to src/resolve.c.
Changes to src/select.c.
Changes to src/sqliteInt.h.
Changes to src/tokenize.c.
Changes to src/trigger.c.
Changes to src/update.c.
Changes to src/util.c.
Changes to src/vdbemem.c.
Changes to src/walker.c.
Changes to src/where.c.
Changes to test/attach.test.
Changes to test/select1.test.
Changes to test/tkt1514.test.
Changes to test/tkt3508.test.