Home
last modified time | relevance | path

Searched refs:NC_AllowAgg (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/src/
H A Dresolve.c583 if( (pNC->ncFlags&NC_AllowAgg)==0 && ExprHasProperty(pOrig, EP_Agg) ){ in lookupName()
997 int savedAllowFlags = (pNC->ncFlags & (NC_AllowAgg | NC_AllowWin)); in resolveExprStep()
1101 (is_agg && (pNC->ncFlags & NC_AllowAgg)==0) in resolveExprStep()
1116 if( (is_agg && (pNC->ncFlags & NC_AllowAgg)==0) ){ in resolveExprStep()
1148 pNC->ncFlags &= ~(NC_AllowWin | (!pWin ? NC_AllowAgg : 0)); in resolveExprStep()
1150 pNC->ncFlags &= ~NC_AllowAgg; in resolveExprStep()
1377 nc.ncFlags = NC_AllowAgg|NC_UEList|NC_NoSelect; in resolveOrderByTermToExprList()
1782 sNC.ncFlags = NC_AllowAgg|NC_AllowWin; in resolveSelectStep()
1800 sNC.ncFlags &= ~NC_AllowAgg; in resolveSelectStep()
1850 sNC.ncFlags |= NC_AllowAgg|NC_AllowWin; in resolveSelectStep()
H A DsqliteInt.h3270 #define NC_AllowAgg 0x000001 /* Aggregate functions are allowed here */ macro