Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dexpr.c2589 if( ExprHasProperty(pX, EP_VarSelect) ) return 0; /* Correlated subq */ in isCandidateForInOpt()
3076 if( !ExprHasProperty(pExpr, EP_VarSelect) && pParse->iSelfTab==0 ){ in sqlite3CodeRhsOfIN()
3296 if( !ExprHasProperty(pExpr, EP_VarSelect) ){ in sqlite3CodeSubselect()
H A Dwhereexpr.c1744 if( ExprHasProperty(p, EP_VarSelect) ) pMaskSet->bVarSelect = 1; in sqlite3WhereExprUsageFull()
H A Dresolve.c1229 ExprSetProperty(pExpr, EP_VarSelect); in resolveExprStep()
H A DsqliteInt.h2901 #define EP_VarSelect 0x000040 /* pSelect is correlated, not constant */ macro