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

/osnet-11/usr/src/lib/libsqlite/src/
H A Dselect.c1627 ** The subquery is p->pSrc->a[iFrom]. isAgg is true if the outer query
1640 int isAgg, /* True if outer SELECT uses aggregate functions */
1658 if( isAgg && subqueryIsAgg ) return 0;
1663 if( (pSub->isDistinct || pSub->nLimit>=0) && (pSrc->nSrc>1 || isAgg) ){
1763 if( isAgg ){
2022 int isAgg = 0; /* True for select lists like "count(*)" */ local
2102 if( sqliteExprCheck(pParse, pEList->a[i].pExpr, 1, &isAgg) ){
2122 if( sqliteExprCheck(pParse, pHaving, 1, &isAgg) ){
2137 if( sqliteExprCheck(pParse, pE, isAgg, 0) ){
2165 if( sqliteExprCheck(pParse, pE, isAgg,
1636 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 49 milliseconds