Home
last modified time | relevance | path

Searched refs:EP_WinFunc (Results 1 – 7 of 7) sorted by relevance

/sqlite-3.40.0/src/
H A Dwalker.c75 assert( !ExprHasProperty(pExpr, EP_WinFunc) ); in walkExpr()
79 assert( !ExprHasProperty(pExpr, EP_WinFunc) ); in walkExpr()
86 if( ExprHasProperty(pExpr, EP_WinFunc) ){ in walkExpr()
H A Dexpr.c1237 assert( !ExprHasProperty(p, EP_WinFunc) ); in sqlite3ExprDeleteNN()
1240 assert( !ExprHasProperty(p, EP_WinFunc) ); in sqlite3ExprDeleteNN()
1245 if( ExprHasProperty(p, EP_WinFunc) ){ in sqlite3ExprDeleteNN()
1352 || ExprHasProperty(p, EP_WinFunc) in dupedExprStructSize()
1495 if( ExprHasProperty(p, EP_WinFunc) ){ in exprDup()
1497 assert( ExprHasProperty(pNew, EP_WinFunc) ); in exprDup()
2195 && !ExprHasProperty(pExpr, EP_WinFunc) in exprNodeIsConstant()
4460 if( ExprHasProperty(pExpr, EP_WinFunc) ){ in sqlite3ExprCodeTarget()
5628 if( ExprHasProperty(pA,EP_WinFunc)!=ExprHasProperty(pB,EP_WinFunc) ){ in sqlite3ExprCompare()
5631 if( ExprHasProperty(pA,EP_WinFunc) ){ in sqlite3ExprCompare()
[all …]
H A Dresolve.c97 if( ExprHasProperty(pExpr, EP_WinFunc) ){ in resolveAlias()
1135 else if( is_agg==0 && ExprHasProperty(pExpr, EP_WinFunc) ){ in resolveExprStep()
1155 else if( ExprHasProperty(pExpr, EP_WinFunc) ){ in resolveExprStep()
1181 if( ExprHasProperty(pExpr, EP_WinFunc) ){ in resolveExprStep()
1580 if( ExprHasProperty(pExpr, EP_WinFunc) ){ in resolveRemoveWindowsCb()
H A DsqliteInt.h2919 #define EP_WinFunc 0x1000000 /* TK_FUNCTION with Expr.y.pWin set */ macro
2950 #define ExprUseYTab(E) (((E)->flags&(EP_WinFunc|EP_Subrtn))==0)
2951 #define ExprUseYWin(E) (((E)->flags&EP_WinFunc)!=0)
2996 ExprHasProperty((p), EP_WinFunc) && p->y.pWin->eFrmType!=TK_FILTER \
H A Dselect.c3865 if( ExprHasProperty(pExpr, EP_WinFunc) ){ in substExpr()
5168 || ExprHasProperty(pFunc, EP_WinFunc) in minMaxQuery()
5235 testcase( ExprHasProperty(pExpr, EP_WinFunc) ); in isSimpleCount()
5236 if( ExprHasProperty(pExpr, EP_Distinct|EP_WinFunc) ) return 0; in isSimpleCount()
6306 if( ExprHasProperty(pF->pFExpr, EP_WinFunc) ){ in updateAccumulator()
7421 if( ExprHasProperty(pExpr, EP_WinFunc) ){ in sqlite3Select()
7788 if( ExprHasProperty(pAggInfo->aFunc[i].pFExpr, EP_WinFunc) ){ in sqlite3Select()
H A Dwindow.c775 if( !ExprHasProperty(pExpr, EP_WinFunc) ){ in selectWindowRewriteExprCb()
1314 ExprSetProperty(p, EP_WinFunc); in sqlite3WindowAttach()
H A Dtreeview.c674 pWin = ExprHasProperty(pExpr, EP_WinFunc) ? pExpr->y.pWin : 0; in sqlite3TreeViewExpr()