Lines Matching full:pusing
9320 IdList *pUsing; /* The USING clause of a join */
59491 IdList *pUsing;
59505 }else if( (pUsing = pItem[1].pUsing)!=0 ){
59510 for(k=0; k<pUsing->nId; k++){
59511 if( sqlite3StrICmp(pUsing->a[k].zName, zCol)==0 ){
61406 pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing);
69677 sqlite3IdListDelete(db, pItem->pUsing);
69692 ** pDatabase parameters are NULL for subqueries. The pOn and pUsing
69706 IdList *pUsing /* The USING clause of a join */
69710 if( !p && (pOn || pUsing) ){
69727 pItem->pUsing = pUsing;
69733 sqlite3IdListDelete(db, pUsing);
70730 assert( pFrom->a[0].pUsing==0 );
79570 if( pRight->pOn || pRight->pUsing ){
79590 if( pRight->pOn && pRight->pUsing ){
79612 if( pRight->pUsing ){
79613 IdList *pList = pRight->pUsing;
82085 sqlite3IdListDelete(db, pSrc->a[i+iFrom].pUsing);
82455 if( sqlite3IdListIndex(pFrom->pUsing, zName)>=0 ){