Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:iSrc

69938 ** from datasource iSrc in SrcList pSrc.
69940 SQLITE_PRIVATE Expr *sqlite3CreateColumnExpr(sqlite3 *db, SrcList *pSrc, int iSrc, int iCol){
69943 struct SrcList_item *pItem = &pSrc->a[iSrc];
76731 int iSrc; /* Index in pTabList->a[] of table being read */
76748 for(iSrc=0; ALWAYS(iSrc<pTabList->nSrc); iSrc++){
76749 if( pExpr->iTable==pTabList->a[iSrc].iCursor ){
76750 pTab = pTabList->a[iSrc].pTab;
86102 int iSrc, iDest; /* Cursors from source and destination */
86235 iSrc = pParse->nTab++;
86256 sqlite3OpenTable(pParse, iSrc, iDbSrc, pSrc, OP_OpenRead);
86257 emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0);
86261 addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
86270 addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid);
86273 sqlite3VdbeAddOp2(v, OP_RowData, iSrc, regData);
86277 sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1);
86283 sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
86286 sqlite3VdbeAddOp4(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc,
86293 addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0);
86294 sqlite3VdbeAddOp2(v, OP_RowKey, iSrc, regData);
86296 sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1);
86302 sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0);
90154 ** where tab1 is the iSrc'th table in SrcList pSrc and tab2 is the
90155 ** (iSrc+1)'th. Column col1 is column iColLeft of tab1, and col2 is