Searched refs:pIsAgg (Results 1 – 1 of 1) sorted by relevance
/titanic_50/usr/src/lib/libsqlite/src/ |
H A D | expr.c | 826 int sqliteExprCheck(Parse *pParse, Expr *pExpr, int allowAgg, int *pIsAgg){ in sqliteExprCheck() argument 868 if( pIsAgg ) *pIsAgg = 1; in sqliteExprCheck() 872 allowAgg && !is_agg, pIsAgg); in sqliteExprCheck() 899 nErr = sqliteExprCheck(pParse, pExpr->pLeft, allowAgg, pIsAgg); in sqliteExprCheck() 902 nErr = sqliteExprCheck(pParse, pExpr->pRight, allowAgg, pIsAgg); in sqliteExprCheck() 909 nErr = sqliteExprCheck(pParse, pE2, allowAgg, pIsAgg); in sqliteExprCheck()
|