Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:pOn

10194     Expr *pOn;        /* The ON clause of a join */
71650 pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn, flags);
76506 if( sqlite3FixExpr(pFix, pItem->pOn) ) return 1;
80077 sqlite3ExprDelete(db, pItem->pOn);
80093 ** pDatabase parameters are NULL for subqueries. The pOn and pUsing
80106 Expr *pOn, /* The ON clause of a join */
80111 if( !p && (pOn || pUsing) ){
80113 (pOn ? "ON" : "USING")
80127 pItem->pOn = pOn;
80133 sqlite3ExprDelete(db, pOn);
81166 assert( pFrom->a[0].pOn==0 );
90263 if( pRight->pOn || pRight->pUsing ){
90283 if( pRight->pOn && pRight->pUsing ){
90292 if( pRight->pOn ){
90293 if( isOuter ) setJoinExpr(pRight->pOn, pRight->iCursor);
90294 p->pWhere = sqlite3ExprAnd(pParse->db, p->pWhere, pRight->pOn);
90295 pRight->pOn = 0;