Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove a surplus local variable |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
91bc840eea2099273bd2c5d41a8410d6 |
User & Date: | drh 2013-07-02 15:25:22.563 |
Context
2013-07-05
| ||
10:46 | Make a couple of implicit casts explicit to fix compiler warnings. (check-in: 9676280a93 user: dan tags: trunk) | |
2013-07-04
| ||
23:53 | Modify several extensions to use the new exported function naming. Fix some shared library compilation issues. (Closed-Leaf check-in: f2ab874782 user: mistachkin tags: extRefactor) | |
2013-07-02
| ||
15:25 | Remove a surplus local variable (check-in: 91bc840eea user: drh tags: trunk) | |
10:06 | Fix a minor typo in a comment in where.c. (check-in: 4a9d51e792 user: dan tags: trunk) | |
Changes
Changes to src/where.c.
︙ | ︙ | |||
5859 5860 5861 5862 5863 5864 5865 | */ sqlite3CodeVerifySchema(pParse, -1); /* Insert the cookie verifier Goto */ notReady = ~(Bitmask)0; for(ii=0, pLevel=pWInfo->a; ii<nTabList; ii++, pLevel++){ Table *pTab; /* Table to open */ int iDb; /* Index of database containing table/index */ struct SrcList_item *pTabItem; | < | 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 | */ sqlite3CodeVerifySchema(pParse, -1); /* Insert the cookie verifier Goto */ notReady = ~(Bitmask)0; for(ii=0, pLevel=pWInfo->a; ii<nTabList; ii++, pLevel++){ Table *pTab; /* Table to open */ int iDb; /* Index of database containing table/index */ struct SrcList_item *pTabItem; pTabItem = &pTabList->a[pLevel->iFrom]; pTab = pTabItem->pTab; iDb = sqlite3SchemaToIndex(db, pTab->pSchema); pLoop = pLevel->pWLoop; if( (pTab->tabFlags & TF_Ephemeral)!=0 || pTab->pSelect ){ /* Do nothing */ |
︙ | ︙ |