Home | History | Annotate | Download | only in src

Lines Matching refs:pRight

116 **    pExpr->pRight        Any expression this points to is deleted.
305 assert( pExpr->pLeft==0 && pExpr->pRight==0 );
384 sqlite3ExprDelete(db, pExpr->pRight);
385 pExpr->pRight = 0;
493 Expr *pRight;
496 pRight = pExpr->pRight;
497 if( pRight->op==TK_ID ){
500 zColumn = pRight->u.zToken;
502 assert( pRight->op==TK_DOT );
504 zTable = pRight->pLeft->u.zToken;
505 zColumn = pRight->pRight->u.zToken;