Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c69242 int iLeft = 0; /* Current index in aLeft */ local
69249 while( iRight<nRight || iLeft<nLeft ){
69253 if( (iLeft<nLeft)
69254 && (iRight>=nRight || aContent[aLeft[iLeft]]<aContent[aRight[iRight]])
69256 logpage = aLeft[iLeft++];
69263 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
69265 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
149349 int iLeft; /* Table on the left with matching column name */ local
149359 || tableAndColumnIndex(pSrc, 0, i, zName, &iLeft, &iLeftCol,
149366 pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iLeftCol);
[all …]