Home | History | Annotate | Download | only in dist

Lines Matching defs:EP_FromJoin

11385   i16 iRightJoinTable;   /* If EP_FromJoin, the right table of the join */
11396 #define EP_FromJoin 0x000001 /* Originated in ON or USING clause of a join */
78793 if( ExprHasProperty(p, EP_FromJoin) ) return 0;
78799 if( ExprHasProperty(p, EP_FromJoin) ) return 0;
79009 assert( !ExprHasProperty(p, EP_FromJoin) );
79475 if( pWalker->u.i==3 && ExprHasProperty(pExpr, EP_FromJoin) ){
101771 ExprSetProperty(pEq, EP_FromJoin);
101780 ** Set the EP_FromJoin property on all terms of the given expression.
101784 ** The EP_FromJoin property is used on terms of an expression to tell
101807 ExprSetProperty(p, EP_FromJoin);
111370 && (pScan->iEquiv<=2 || !ExprHasProperty(pTerm->pExpr, EP_FromJoin))
111673 pDerived->flags |= pBase->flags & EP_FromJoin;
112045 if( ExprHasProperty(pExpr, EP_FromJoin) ){
112083 && !ExprHasProperty(pExpr, EP_FromJoin)
113340 && (pLevel->iLeftJoin==0 || ExprHasProperty(pTerm->pExpr, EP_FromJoin))
114419 if( ExprHasProperty(pExpr, EP_FromJoin) ) continue;
114444 if( pAndExpr && !ExprHasProperty(pOrExpr, EP_FromJoin) ){
114603 if( pLevel->iLeftJoin && !ExprHasProperty(pE, EP_FromJoin) ){
114626 assert( !ExprHasProperty(pE, EP_FromJoin) );
114677 if( ExprHasProperty(pTerm->pExpr, EP_FromJoin) ) zType[2] = 'L';
117134 && !ExprHasProperty(pTerm->pExpr, EP_FromJoin)