Lines Matching refs:pNewExpr
1237 Expr *pNewExpr; in exprAnalyze() local
1239 pNewExpr = sqlite3PExpr(pParse, ops[i], in exprAnalyze()
1242 transferJoinMarkings(pNewExpr, pExpr); in exprAnalyze()
1243 idxNew = whereClauseInsert(pWC, pNewExpr, TERM_VIRTUAL|TERM_DYNAMIC); in exprAnalyze()
1273 Expr *pNewExpr; in exprAnalyze() local
1278 pNewExpr = sqlite3PExpr(pParse, TK_GT, in exprAnalyze()
1282 idxNew = whereClauseInsert(pWC, pNewExpr, in exprAnalyze()
1472 Expr *pNewExpr; in exprAnalyze() local
1473 pNewExpr = sqlite3PExpr(pParse, TK_MATCH, in exprAnalyze()
1475 if( ExprHasProperty(pExpr, EP_OuterON) && pNewExpr ){ in exprAnalyze()
1476 ExprSetProperty(pNewExpr, EP_OuterON); in exprAnalyze()
1477 pNewExpr->w.iJoin = pExpr->w.iJoin; in exprAnalyze()
1479 idxNew = whereClauseInsert(pWC, pNewExpr, TERM_VIRTUAL|TERM_DYNAMIC); in exprAnalyze()