Lines Matching refs:pPart
168283 Expr *pPart, /* WHERE clause being processed */
168291 if( pPart->op==TK_AND ){
168292 wherePartIdxExpr(pParse, pIdx, pPart->pRight, pMask, iIdxCur, pItem);
168293 pPart = pPart->pLeft;
168296 if( (pPart->op==TK_EQ || pPart->op==TK_IS) ){
168297 Expr *pLeft = pPart->pLeft;
168298 Expr *pRight = pPart->pRight;
168303 if( !sqlite3IsBinary(sqlite3ExprCompareCollSeq(pParse, pPart)) ) return;
173784 ExprList *pPart = pMWin->pPartition;
173785 int iColOff = pMWin->nBufferCol + (pPart ? pPart->nExpr : 0);
175071 ExprList *pPart = pMWin->pPartition;
175072 int nPart = pPart->nExpr;
175074 KeyInfo *pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pPart, 0, 0);