Home | History | Annotate | Download | only in dist

Lines Matching defs:iSrc

77310 ** from datasource iSrc in SrcList pSrc.
77312 SQLITE_PRIVATE Expr *sqlite3CreateColumnExpr(sqlite3 *db, SrcList *pSrc, int iSrc, int iCol){
77315 struct SrcList_item *pItem = &pSrc->a[iSrc];
86003 int iSrc; /* Index in pTabList->a[] of table being read */
86020 for(iSrc=0; ALWAYS(iSrc<pTabList->nSrc); iSrc++){
86021 if( pExpr->iTable==pTabList->a[iSrc].iCursor ){
86022 pTab = pTabList->a[iSrc].pTab;
96576 int iSrc, iDest; /* Cursors from source and destination */
96735 iSrc = pParse->nTab++;
96765 sqlite3OpenTable(pParse, iSrc, iDbSrc, pSrc, OP_OpenRead);
96766 emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
96768 addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
96777 addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
96780 sqlite3VdbeAddOp2(v, OP_RowData, iSrc, regData);
96784 sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1); VdbeCoverage(v);
96785 sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
96796 sqlite3VdbeAddOp3(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc);
96803 addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v);
96804 sqlite3VdbeAddOp2(v, OP_RowKey, iSrc, regData);
96806 sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1); VdbeCoverage(v);
96808 sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
101742 ** where tab1 is the iSrc'th table in SrcList pSrc and tab2 is the
101743 ** (iSrc+1)'th. Column col1 is column iColLeft of tab1, and col2 is