Home
last modified time | relevance | path

Searched refs:pNC (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/src/
H A Dresolve.c588 && ((pNC->ncFlags&NC_AllowWin)==0 || pNC!=pTopNC ) in lookupName()
613 pNC = pNC->pNext; in lookupName()
615 }while( pNC ); in lookupName()
737 assert( pNC!=0 ); in lookupName()
857 NameContext *pNC; in resolveExprStep() local
860 pNC = pWalker->u.pNC; in resolveExprStep()
861 assert( pNC!=0 ); in resolveExprStep()
866 if( pNC->pSrcList && pNC->pSrcList->nAlloc>0 ){ in resolveExprStep()
1185 pNC2 = pNC; in resolveExprStep()
1987 w.u.pNC = pNC; in sqlite3ResolveExprNames()
[all …]
H A Dexpr.c6252 NameContext *pNC = pWalker->u.pNC; in analyzeAggregate() local
6253 Parse *pParse = pNC->pParse; in analyzeAggregate()
6254 SrcList *pSrcList = pNC->pSrcList; in analyzeAggregate()
6255 AggInfo *pAggInfo = pNC->uNC.pAggInfo; in analyzeAggregate()
6257 assert( pNC->ncFlags & NC_UAggInfo ); in analyzeAggregate()
6338 if( (pNC->ncFlags & NC_InAggFunc)==0 in analyzeAggregate()
6396 void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){ in sqlite3ExprAnalyzeAggregates() argument
6402 w.u.pNC = pNC; in sqlite3ExprAnalyzeAggregates()
6404 assert( pNC->pSrcList!=0 ); in sqlite3ExprAnalyzeAggregates()
6414 void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){ in sqlite3ExprAnalyzeAggList() argument
[all …]
H A Dselect.c1854 NameContext *pNC, in columnTypeImpl() argument
1873 assert( pNC->pSrcList!=0 ); in columnTypeImpl()
1883 while( pNC && !pTab ){ in columnTypeImpl()
1884 SrcList *pTabList = pNC->pSrcList; in columnTypeImpl()
1890 pNC = pNC->pNext; in columnTypeImpl()
1935 sNC.pNext = pNC; in columnTypeImpl()
1936 sNC.pParse = pNC->pParse; in columnTypeImpl()
1953 if( pNC->pParse && pTab->pSchema ){ in columnTypeImpl()
1955 zOrigDb = pNC->pParse->db->aDb[iDb].zDbSName; in columnTypeImpl()
1981 sNC.pNext = pNC; in columnTypeImpl()
[all …]
H A DsqliteInt.h4087 NameContext *pNC; /* Naming context */ member