Home | History | Annotate | Download | only in dist

Lines Matching refs:pUsing

9325     IdList *pUsing;   /* The USING clause of a join */
59502 IdList *pUsing;
59516 }else if( (pUsing = pItem[1].pUsing)!=0 ){
59521 for(k=0; k<pUsing->nId; k++){
59522 if( sqlite3StrICmp(pUsing->a[k].zName, zCol)==0 ){
61417 pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing);
69688 sqlite3IdListDelete(db, pItem->pUsing);
69703 ** pDatabase parameters are NULL for subqueries. The pOn and pUsing
69717 IdList *pUsing /* The USING clause of a join */
69721 if( !p && (pOn || pUsing) ){
69738 pItem->pUsing = pUsing;
69744 sqlite3IdListDelete(db, pUsing);
70741 assert( pFrom->a[0].pUsing==0 );
79581 if( pRight->pOn || pRight->pUsing ){
79601 if( pRight->pOn && pRight->pUsing ){
79623 if( pRight->pUsing ){
79624 IdList *pList = pRight->pUsing;
82096 sqlite3IdListDelete(db, pSrc->a[i+iFrom].pUsing);
82466 if( sqlite3IdListIndex(pFrom->pUsing, zName)>=0 ){