Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a couple of compiler warnings. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | broken-build |
Files: | files | file ages | folders |
SHA1: |
3899f3b95ed50773a72d907b39b451fe |
User & Date: | drh 2011-06-15 12:43:36.849 |
Context
2011-06-15
| ||
13:02 | Fix so that the TCL test harness works even if SQLITE_ENABLE_FTS is omitted. (Closed-Leaf check-in: 63ebcb52a1 user: drh tags: broken-build) | |
12:43 | Fix a couple of compiler warnings. (check-in: 3899f3b95e user: drh tags: broken-build) | |
08:30 | Add an interface to better test incremental loading of doclists by FTS4. Also some tests for this and term prefix queries. (check-in: 7a3813138d user: dan tags: broken-build) | |
Changes
Changes to ext/fts3/fts3.c.
︙ | |||
3271 3272 3273 3274 3275 3276 3277 | 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 | - - + | return SQLITE_OK; }else if( aPoslist==0 ){ aPoslist = pList; nPoslist = nList; }else{ |
︙ |
Changes to src/func.c.
︙ | |||
604 605 606 607 608 609 610 | 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 | - + | } return 0; }else if( !prevEscape && c==matchOne ){ if( sqlite3Utf8Read(zString, &zString)==0 ){ return 0; } }else if( c==matchSet ){ |
︙ |