Home | History | Annotate | Download | only in orig

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 */
78773 if( ExprHasProperty(p, EP_FromJoin) ) return 0;
78779 if( ExprHasProperty(p, EP_FromJoin) ) return 0;
78989 assert( !ExprHasProperty(p, EP_FromJoin) );
79455 if( pWalker->u.i==3 && ExprHasProperty(pExpr, EP_FromJoin) ){
101751 ExprSetProperty(pEq, EP_FromJoin);
101760 ** Set the EP_FromJoin property on all terms of the given expression.
101764 ** The EP_FromJoin property is used on terms of an expression to tell
101787 ExprSetProperty(p, EP_FromJoin);
111350 && (pScan->iEquiv<=2 || !ExprHasProperty(pTerm->pExpr, EP_FromJoin))
111653 pDerived->flags |= pBase->flags & EP_FromJoin;
112025 if( ExprHasProperty(pExpr, EP_FromJoin) ){
112063 && !ExprHasProperty(pExpr, EP_FromJoin)
113320 && (pLevel->iLeftJoin==0 || ExprHasProperty(pTerm->pExpr, EP_FromJoin))
114399 if( ExprHasProperty(pExpr, EP_FromJoin) ) continue;
114424 if( pAndExpr && !ExprHasProperty(pOrExpr, EP_FromJoin) ){
114583 if( pLevel->iLeftJoin && !ExprHasProperty(pE, EP_FromJoin) ){
114606 assert( !ExprHasProperty(pE, EP_FromJoin) );
114657 if( ExprHasProperty(pTerm->pExpr, EP_FromJoin) ) zType[2] = 'L';
117114 && !ExprHasProperty(pTerm->pExpr, EP_FromJoin)