Home
last modified time | relevance | path

Searched refs:iLeft (Results 1 – 1 of 1) sorted by relevance

/src/contrib/sqlite3/
H A Dsqlite3.c67697 int iLeft = 0; /* Current index in aLeft */ local
67704 while( iRight<nRight || iLeft<nLeft ){
67708 if( (iLeft<nLeft)
67709 && (iRight>=nRight || aContent[aLeft[iLeft]]<aContent[aRight[iRight]])
67711 logpage = aLeft[iLeft++];
67718 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
67720 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
145419 int iLeft; /* Table on the left with matching column name */
145429 || tableAndColumnIndex(pSrc, 0, i, zName, &iLeft, &iLeftCol,
145436 pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iLeftCol);
[all …]