Home | History | Annotate | Download | only in orig

Lines Matching defs:iSrc

83986 ** from datasource iSrc in SrcList pSrc.
83988 SQLITE_PRIVATE Expr *sqlite3CreateColumnExpr(sqlite3 *db, SrcList *pSrc, int iSrc, int iCol){
83991 struct SrcList_item *pItem = &pSrc->a[iSrc];
92651 int iSrc; /* Index in pTabList->a[] of table being read */
92668 for(iSrc=0; ALWAYS(iSrc<pTabList->nSrc); iSrc++){
92669 if( pExpr->iTable==pTabList->a[iSrc].iCursor ){
92670 pTab = pTabList->a[iSrc].pTab;
103596 int iSrc, iDest; /* Cursors from source and destination */
103755 iSrc = pParse->nTab++;
103789 sqlite3OpenTable(pParse, iSrc, iDbSrc, pSrc, OP_OpenRead);
103790 emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
103792 addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
103801 addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
103804 sqlite3VdbeAddOp2(v, OP_RowData, iSrc, regData);
103808 sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1); VdbeCoverage(v);
103809 sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
103821 sqlite3VdbeAddOp3(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc);
103828 addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
103829 sqlite3VdbeAddOp2(v, OP_RowKey, iSrc, regData);
103860 sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1); VdbeCoverage(v);
103862 sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
108937 ** where tab1 is the iSrc'th table in SrcList pSrc and tab2 is the
108938 ** (iSrc+1)'th. Column col1 is column iColLeft of tab1, and col2 is