Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Cherry-pick part of 138783b5 from SQLite trunk. Harmless compile warning. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9a11b49e65dcd9f7509b919896689612 |
User & Date: | jan.nijtmans 2015-11-09 08:58:25 |
Context
2015-11-10
| ||
12:16 | Fix a missing comma in the /test_env page. ... (check-in: 5f962bfa user: drh tags: trunk) | |
2015-11-09
| ||
08:58 | Cherry-pick part of 138783b5 from SQLite trunk. Harmless compile warning. ... (check-in: 9a11b49e user: jan.nijtmans tags: trunk) | |
2015-11-06
| ||
08:45 | Cherry-pick part of 138783b5 from SQLite trunk. Reported by Don Porter here: http://cyqlite.sourceforge.net/cgi-bin/sqlite/tktview?name=d4593fcd90 (If SQLite 3.9.3 is ever released, I hope this harmless warning is fixed in it) ... (check-in: ac377196 user: jan.nijtmans tags: branch-1.34) | |
08:09 | Use the same definition of BINARY in multiple places of fossil. Reported by sky5walk. ... (check-in: b51ba293 user: jan.nijtmans tags: trunk) | |
Changes
Changes to src/sqlite3.c.
︙ | ︙ | |||
121997 121998 121999 122000 122001 122002 122003 | char *zNotUsed; /* Extra space on the end of pIdx */ Bitmask idxCols; /* Bitmap of columns used for indexing */ Bitmask extraCols; /* Bitmap of additional columns */ u8 sentWarning = 0; /* True if a warnning has been issued */ Expr *pPartial = 0; /* Partial Index Expression */ int iContinue = 0; /* Jump here to skip excluded rows */ struct SrcList_item *pTabItem; /* FROM clause term being indexed */ | | | 121997 121998 121999 122000 122001 122002 122003 122004 122005 122006 122007 122008 122009 122010 122011 | char *zNotUsed; /* Extra space on the end of pIdx */ Bitmask idxCols; /* Bitmap of columns used for indexing */ Bitmask extraCols; /* Bitmap of additional columns */ u8 sentWarning = 0; /* True if a warnning has been issued */ Expr *pPartial = 0; /* Partial Index Expression */ int iContinue = 0; /* Jump here to skip excluded rows */ struct SrcList_item *pTabItem; /* FROM clause term being indexed */ int addrCounter = 0; /* Address where integer counter is initialized */ int regBase; /* Array of registers where record is assembled */ /* Generate code to skip over the creation and initialization of the ** transient index on 2nd and subsequent iterations of the loop. */ v = pParse->pVdbe; assert( v!=0 ); addrInit = sqlite3CodeOnce(pParse); VdbeCoverage(v); |
︙ | ︙ |