Home | History | Annotate | Download | only in dist

Lines Matching defs:iSrc

84004 ** from datasource iSrc in SrcList pSrc.
84006 SQLITE_PRIVATE Expr *sqlite3CreateColumnExpr(sqlite3 *db, SrcList *pSrc, int iSrc, int iCol){
84009 struct SrcList_item *pItem = &pSrc->a[iSrc];
92669 int iSrc; /* Index in pTabList->a[] of table being read */
92686 for(iSrc=0; ALWAYS(iSrc<pTabList->nSrc); iSrc++){
92687 if( pExpr->iTable==pTabList->a[iSrc].iCursor ){
92688 pTab = pTabList->a[iSrc].pTab;
103614 int iSrc, iDest; /* Cursors from source and destination */
103773 iSrc = pParse->nTab++;
103807 sqlite3OpenTable(pParse, iSrc, iDbSrc, pSrc, OP_OpenRead);
103808 emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
103810 addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
103819 addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
103822 sqlite3VdbeAddOp2(v, OP_RowData, iSrc, regData);
103826 sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1); VdbeCoverage(v);
103827 sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
103839 sqlite3VdbeAddOp3(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc);
103846 addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
103847 sqlite3VdbeAddOp2(v, OP_RowKey, iSrc, regData);
103878 sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1); VdbeCoverage(v);
103880 sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
108955 ** where tab1 is the iSrc'th table in SrcList pSrc and tab2 is the
108956 ** (iSrc+1)'th. Column col1 is column iColLeft of tab1, and col2 is