Lines Matching refs:aiCurCol
978 int *aiCurCol, /* Write the referenced table cursor and column here */ in exprMightBeIndexed2() argument
992 aiCurCol[0] = iCur; in exprMightBeIndexed2()
993 aiCurCol[1] = XN_EXPR; in exprMightBeIndexed2()
1003 int *aiCurCol, /* Write the referenced table cursor & column here */ in exprMightBeIndexed() argument
1020 aiCurCol[0] = pExpr->iTable; in exprMightBeIndexed()
1021 aiCurCol[1] = pExpr->iColumn; in exprMightBeIndexed()
1026 return exprMightBeIndexed2(pFrom,mPrereq,aiCurCol,pExpr); in exprMightBeIndexed()
1140 int aiCurCol[2]; in exprAnalyze() local
1152 if( exprMightBeIndexed(pSrc, prereqLeft, aiCurCol, pLeft, op) ){ in exprAnalyze()
1153 pTerm->leftCursor = aiCurCol[0]; in exprAnalyze()
1155 pTerm->u.x.leftColumn = aiCurCol[1]; in exprAnalyze()
1160 && exprMightBeIndexed(pSrc, pTerm->prereqRight, aiCurCol, pRight, op) in exprAnalyze()
1191 pNew->leftCursor = aiCurCol[0]; in exprAnalyze()
1193 pNew->u.x.leftColumn = aiCurCol[1]; in exprAnalyze()