Home | History | Annotate | Download | only in orig

Lines Matching defs:iSrc

77290 ** from datasource iSrc in SrcList pSrc.
77292 SQLITE_PRIVATE Expr *sqlite3CreateColumnExpr(sqlite3 *db, SrcList *pSrc, int iSrc, int iCol){
77295 struct SrcList_item *pItem = &pSrc->a[iSrc];
85983 int iSrc; /* Index in pTabList->a[] of table being read */
86000 for(iSrc=0; ALWAYS(iSrc<pTabList->nSrc); iSrc++){
86001 if( pExpr->iTable==pTabList->a[iSrc].iCursor ){
86002 pTab = pTabList->a[iSrc].pTab;
96556 int iSrc, iDest; /* Cursors from source and destination */
96715 iSrc = pParse->nTab++;
96745 sqlite3OpenTable(pParse, iSrc, iDbSrc, pSrc, OP_OpenRead);
96746 emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
96748 addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
96757 addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
96760 sqlite3VdbeAddOp2(v, OP_RowData, iSrc, regData);
96764 sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1); VdbeCoverage(v);
96765 sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
96776 sqlite3VdbeAddOp3(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc);
96783 addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
96784 sqlite3VdbeAddOp2(v, OP_RowKey, iSrc, regData);
96786 sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1); VdbeCoverage(v);
96788 sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
101722 ** where tab1 is the iSrc'th table in SrcList pSrc and tab2 is the
101723 ** (iSrc+1)'th. Column col1 is column iColLeft of tab1, and col2 is