Lines Matching refs:pPart
165787 Expr *pPart, /* WHERE clause being processed */
165795 if( pPart->op==TK_AND ){
165796 wherePartIdxExpr(pParse, pIdx, pPart->pRight, pMask, iIdxCur, pItem);
165797 pPart = pPart->pLeft;
165800 if( (pPart->op==TK_EQ || pPart->op==TK_IS) ){
165801 Expr *pLeft = pPart->pLeft;
165802 Expr *pRight = pPart->pRight;
165807 if( !sqlite3IsBinary(sqlite3ExprCompareCollSeq(pParse, pPart)) ) return;
170973 ExprList *pPart = pMWin->pPartition;
170974 int iColOff = pMWin->nBufferCol + (pPart ? pPart->nExpr : 0);
172258 ExprList *pPart = pMWin->pPartition;
172259 int nPart = pPart->nExpr;
172261 KeyInfo *pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pPart, 0, 0);