Lines Matching refs:EP_InnerON

19040 #define EP_InnerON    0x000002 /* Originates in ON/USING of an inner join */  macro
19093 #define ExprUseWOfst(E) (((E)->flags&(EP_InnerON|EP_OuterON))==0)
19094 #define ExprUseWJoin(E) (((E)->flags&(EP_InnerON|EP_OuterON))!=0)
32071 && (ExprHasProperty(pExpr,EP_OuterON|EP_InnerON) || pExpr->w.iOfst<=0) in sqlite3RecordErrorOffsetOfExpr()
33094 if( ExprHasProperty(pExpr, EP_InnerON) ){ in sqlite3TreeViewExpr()
110152 if( (f&(EP_OuterON|EP_InnerON|EP_IsFalse))==EP_IsFalse
110182 assert( !ExprHasProperty(pNew, EP_InnerON|EP_OuterON) );
111678 if( ExprHasProperty(pExpr, EP_OuterON|EP_InnerON) /* (6a) */
115338 if( ExprHasProperty(pExpr, EP_InnerON) && pWalker->mWFlags ){
143306 assert( joinFlag==EP_OuterON || joinFlag==EP_InnerON );
143343 ExprClearProperty(p, EP_OuterON|EP_InnerON);
143344 if( iTable>=0 ) ExprSetProperty(p, EP_InnerON);
143399 joinType = (pRight->fg.jointype & JT_OUTER)!=0 ? EP_OuterON : EP_InnerON;
146739 if( ExprHasProperty(pExpr, EP_OuterON|EP_InnerON)
146742 testcase( ExprHasProperty(pExpr, EP_InnerON) );
146788 if( ExprHasProperty(pExpr,EP_OuterON|EP_InnerON) ){
146790 pExpr->flags & (EP_OuterON|EP_InnerON));
147721 testcase( ExprHasProperty(pExpr, EP_InnerON) );
147762 testcase( ExprHasProperty(pExpr, EP_InnerON) );
147892 x.mExcludeOn = EP_InnerON | EP_OuterON;
148128 if( ExprHasProperty(pWhere, EP_OuterON|EP_InnerON) /* (9a) */
159936 if( !ExprHasProperty(pE,EP_OuterON|EP_InnerON) ){
160193 if( ExprHasProperty(pTerm->pExpr, EP_OuterON|EP_InnerON) ) continue;
160703 if( pDerived && ExprHasProperty(pBase, EP_OuterON|EP_InnerON) ){
160704 pDerived->flags |= pBase->flags & (EP_OuterON|EP_InnerON);
161362 if( ExprHasProperty(pExpr, EP_OuterON|EP_InnerON) ){
161383 ExprClearProperty(pExpr, EP_InnerON);
162109 joinType = EP_InnerON;
162946 testcase( ExprHasProperty(pTerm->pExpr, EP_InnerON) );
162947 if( !ExprHasProperty(pTerm->pExpr, EP_OuterON|EP_InnerON)
162953 && ExprHasProperty(pTerm->pExpr, EP_InnerON)
168038 && ExprHasProperty(pTerm->pExpr, EP_InnerON)
168549 && !(ExprHasProperty(pX, EP_InnerON) /* Condition (3) */