Searched refs:pIsAgg (Results 1 – 1 of 1) sorted by relevance
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | expr.c | 824 int sqliteExprCheck(Parse *pParse, Expr *pExpr, int allowAgg, int *pIsAgg){ in sqliteExprCheck() argument 866 if( pIsAgg ) *pIsAgg = 1; in sqliteExprCheck() 870 allowAgg && !is_agg, pIsAgg); in sqliteExprCheck() 898 nErr = sqliteExprCheck(pParse, pExpr->pLeft, allowAgg, pIsAgg); in sqliteExprCheck() 901 nErr = sqliteExprCheck(pParse, pExpr->pRight, allowAgg, pIsAgg); in sqliteExprCheck() 908 nErr = sqliteExprCheck(pParse, pE2, allowAgg, pIsAgg); in sqliteExprCheck()
|