Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typos in test naming (was using 'e' instead of 'f'). (CVS 3655) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
16cb00adeb3b68220ba2567b86b230bb |
User & Date: | shess 2007-02-23 00:14:06.000 |
Context
2007-02-23
| ||
03:00 | Clarify the documentation on how comparisons occur in an IN operator. Fix the comparison operators when both sides of an IN operator are expressions (ticket #2248). Changes to main.mk for adding FTS2 into the standard build also got mixed in with this check-in by mistake. (CVS 3656) (check-in: da81725ca1 user: drh tags: trunk) | |
00:14 | Fix typos in test naming (was using 'e' instead of 'f'). (CVS 3655) (check-in: 16cb00adeb user: shess tags: trunk) | |
2007-02-22
| ||
23:06 | Make the depth of the pushdown automaton stack generated by lemon changable at compile-time using -DYYSTACKDEPTH=<number>. (CVS 3654) (check-in: d8845ac1fb user: drh tags: trunk) | |
Changes
Changes to test/fts1f.test.
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - + | # 2006 October 19 # # The author disclaims copyright to this source code. # #************************************************************************* # This file implements regression tests for SQLite library. The # focus of this script is testing updates in the FTS1 module. # |
︙ | |||
59 60 61 62 63 64 65 | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | - + - + - + - + - + - + | UPDATE t1 SET content = 'update' WHERE rowid = 15; } do_test fts1f-1.1 { execsql {SELECT COUNT(*) FROM t1} } {16} |
Changes to test/fts2f.test.
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - + | # 2006 October 19 # # The author disclaims copyright to this source code. # #************************************************************************* # This file implements regression tests for SQLite library. The # focus of this script is testing updates in the FTS2 module. # |
︙ | |||
59 60 61 62 63 64 65 | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | - + - + - + - + - + - + | UPDATE t1 SET content = 'update' WHERE rowid = 15; } do_test fts2f-1.1 { execsql {SELECT COUNT(*) FROM t1} } {16} |