Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dresolve.c200 ExprSetProperty(pNew, EP_CanBeNull); in extendFJMatch()
422 ExprSetProperty(pExpr, EP_CanBeNull); in lookupName()
713 ExprSetProperty(pExpr, EP_Leaf); in lookupName()
923 ExprSetProperty(pExpr, EP_IsTrue); in resolveExprStep()
926 ExprSetProperty(pExpr, EP_IsFalse); in resolveExprStep()
1014 ExprSetProperty(pExpr, EP_Unlikely); in resolveExprStep()
1055 ExprSetProperty(pExpr,EP_ConstFunc); in resolveExprStep()
1069 if( pNC->ncFlags & NC_FromDDL ) ExprSetProperty(pExpr, EP_FromDDL); in resolveExprStep()
1229 ExprSetProperty(pExpr, EP_VarSelect); in resolveExprStep()
2002 ExprSetProperty(pExpr, pNC->ncFlags & (NC_HasAgg|NC_HasWin) ); in sqlite3ResolveExprNames()
[all …]
H A Dwhereexpr.c1206 ExprSetProperty(pExpr, EP_IsFalse); in exprAnalyze()
1476 ExprSetProperty(pNewExpr, EP_OuterON); in exprAnalyze()
1566 ExprSetProperty(pVal, EP_IntValue); in whereAddLimitExpr()
H A Dattach.c442 if( !pFix->bTemp ) ExprSetProperty(pExpr, EP_FromDDL); in fixExprCb()
H A Dexpr.c972 ExprSetProperty(pExpr, EP_xIsSelect|EP_Subquery); in sqlite3PExprAddSelect()
1090 ExprSetProperty(pNew, EP_HasFunc); in sqlite3ExprFunction()
1093 if( eDistinct==SF_Distinct ) ExprSetProperty(pNew, EP_Distinct); in sqlite3ExprFunction()
2106 ExprSetProperty(pExpr, v); in sqlite3ExprIdToTrueFalse()
2197 if( pWalker->eCode==5 ) ExprSetProperty(pExpr, EP_FromDDL); in exprNodeIsConstant()
3098 ExprSetProperty(pExpr, EP_Subrtn); in sqlite3CodeRhsOfIN()
3281 ExprSetProperty(pExpr, EP_Subrtn); in sqlite3CodeSubselect()
H A Dselect.c410 ExprSetProperty(p, joinFlag); in sqlite3SetJoinExpr()
446 if( iTable>=0 ) ExprSetProperty(p, EP_InnerON); in unsetJoinExpr()
605 ExprSetProperty(pEq, joinType); in sqlite3ProcessJoin()
3823 ExprSetProperty(pNew, EP_CanBeNull); in substExpr()
3834 ExprSetProperty(pExpr, EP_IntValue); in substExpr()
4799 ExprSetProperty(pExpr, EP_FixedCol); in propagateConstantExprRewriteOne()
H A Dwindow.c809 ExprSetProperty(pExpr, EP_Static); in selectWindowRewriteExprCb()
1314 ExprSetProperty(p, EP_WinFunc); in sqlite3WindowAttach()
H A DsqliteInt.h2938 #define ExprSetProperty(E,P) (E)->flags|=(P) macro