Lines Matching refs:EP_InnerON
19458 #define EP_InnerON 0x000002 /* Originates in ON/USING of an inner join */ macro
19511 #define ExprUseWOfst(E) (((E)->flags&(EP_InnerON|EP_OuterON))==0)
19512 #define ExprUseWJoin(E) (((E)->flags&(EP_InnerON|EP_OuterON))!=0)
32630 && (ExprHasProperty(pExpr,EP_OuterON|EP_InnerON) || pExpr->w.iOfst<=0) in sqlite3RecordErrorOffsetOfExpr()
33668 if( ExprHasProperty(pExpr, EP_InnerON) ){ in sqlite3TreeViewExpr()
111492 if( (f&(EP_OuterON|EP_InnerON|EP_IsFalse|EP_HasFunc))==EP_IsFalse
111522 assert( !ExprHasProperty(pNew, EP_InnerON|EP_OuterON) );
113024 if( ExprHasProperty(pExpr, EP_OuterON|EP_InnerON) /* (6a) */
116950 if( ExprHasProperty(pExpr, EP_InnerON) && pWalker->mWFlags ){
145279 assert( joinFlag==EP_OuterON || joinFlag==EP_InnerON );
145316 ExprClearProperty(p, EP_OuterON|EP_InnerON);
145317 if( iTable>=0 ) ExprSetProperty(p, EP_InnerON);
145372 joinType = (pRight->fg.jointype & JT_OUTER)!=0 ? EP_OuterON : EP_InnerON;
148736 if( ExprHasProperty(pExpr, EP_OuterON|EP_InnerON)
148739 testcase( ExprHasProperty(pExpr, EP_InnerON) );
148805 if( ExprHasProperty(pExpr,EP_OuterON|EP_InnerON) ){
148807 pExpr->flags & (EP_OuterON|EP_InnerON));
149735 testcase( ExprHasProperty(pExpr, EP_InnerON) );
149776 testcase( ExprHasProperty(pExpr, EP_InnerON) );
149907 x.mExcludeOn = EP_InnerON | EP_OuterON;
150144 if( ExprHasProperty(pWhere, EP_OuterON|EP_InnerON) /* (9a) */
162232 if( !ExprHasProperty(pE,EP_OuterON|EP_InnerON) ){
162494 if( ExprHasProperty(pTerm->pExpr, EP_OuterON|EP_InnerON) ) continue;
163034 if( pDerived && ExprHasProperty(pBase, EP_OuterON|EP_InnerON) ){
163035 pDerived->flags |= pBase->flags & (EP_OuterON|EP_InnerON);
163707 if( ExprHasProperty(pExpr, EP_OuterON|EP_InnerON) ){
163728 ExprClearProperty(pExpr, EP_InnerON);
164460 joinType = EP_InnerON;
165308 testcase( ExprHasProperty(pTerm->pExpr, EP_InnerON) );
165309 if( !ExprHasProperty(pTerm->pExpr, EP_OuterON|EP_InnerON)
165315 && NEVER(ExprHasProperty(pTerm->pExpr, EP_InnerON))
170879 && ExprHasProperty(pTerm->pExpr, EP_InnerON)
171332 && !(ExprHasProperty(pX, EP_InnerON) /* Condition (3) */