Searched defs:isAgg (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dselect.c1629 ** The subquery is p->pSrc->a[iFrom]. isAgg is true if the outer query
1642 int isAgg, /* True if outer SELECT uses aggregate functions */
1660 if( isAgg && subqueryIsAgg ) return 0;
1665 if( (pSub->isDistinct || pSub->nLimit>=0) && (pSrc->nSrc>1 || isAgg) ){
1765 if( isAgg ){
2024 int isAgg = 0; /* True for select lists like "count(*)" */ local
2104 if( sqliteExprCheck(pParse, pEList->a[i].pExpr, 1, &isAgg) ){
2124 if( sqliteExprCheck(pParse, pHaving, 1, &isAgg) ){
2139 if( sqliteExprCheck(pParse, pE, isAgg, 0) ){
2167 if( sqliteExprCheck(pParse, pE, isAgg,
1638 flattenSubquery( Parse *pParse, Select *p, int iFrom, int isAgg, int subqueryIsAgg ) argument
[all...]
H A DsqliteInt.h731 u8 isAgg; /* True if this is an aggregate like count(*) */ member in struct:ExprList::ExprList_item
902 int isAgg; /* if TRUE contains an aggregate function */ member in struct:AggExpr

Completed in 53 milliseconds