Searched refs:allowAgg (Results 1 – 1 of 1) sorted by relevance
/titanic_41/usr/src/lib/libsqlite/src/ |
H A D | expr.c | 826 int sqliteExprCheck(Parse *pParse, Expr *pExpr, int allowAgg, int *pIsAgg){ in sqliteExprCheck() argument 854 if( is_agg && !allowAgg ){ 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()
|