Home
last modified time | relevance | path

Searched refs:EP_FixedCol (Results 1 – 6 of 6) sorted by relevance

/sqlite-3.40.0/src/
H A Dwhereexpr.c1161 && !ExprHasProperty(pRight, EP_FixedCol) in exprAnalyze()
1760 if( p->op==TK_COLUMN && !ExprHasProperty(p, EP_FixedCol) ){ in sqlite3WhereExprUsageNN()
H A Dselect.c3789 && !ExprHasProperty(pExpr, EP_FixedCol) in substExpr()
4701 if( ExprHasProperty(pColumn, EP_FixedCol) ) return; in constInsert()
4782 if( ExprHasProperty(pExpr, EP_FixedCol|pConst->mExcludeOn) ){ in propagateConstantExprRewriteOne()
4783 testcase( ExprHasProperty(pExpr, EP_FixedCol) ); in propagateConstantExprRewriteOne()
4799 ExprSetProperty(pExpr, EP_FixedCol); in propagateConstantExprRewriteOne()
H A Dtreeview.c534 if( ExprHasProperty(pExpr, EP_FixedCol) ){ in sqlite3TreeViewExpr()
H A Dexpr.c2217 if( ExprHasProperty(pExpr, EP_FixedCol) && pWalker->eCode!=2 ){ in exprNodeIsConstant()
4154 if( ExprHasProperty(pExpr, EP_FixedCol) ){ in sqlite3ExprCodeTarget()
5654 if( (combinedFlags & EP_FixedCol)==0 in sqlite3ExprCompare()
H A DsqliteInt.h2900 #define EP_FixedCol 0x000020 /* TK_Column with a known fixed value */ macro
H A Dwhere.c299 if( ALWAYS(p!=0) && p->op==TK_COLUMN && !ExprHasProperty(p, EP_FixedCol) ){ in whereRightSubexprIsColumn()