Home | History | Annotate | Download | only in dist

Lines Matching refs:pUsing

9978     IdList *pUsing;   /* The USING clause of a join */
67793 IdList *pUsing;
67807 }else if( (pUsing = pItem[1].pUsing)!=0 ){
67812 for(k=0; k<pUsing->nId; k++){
67813 if( sqlite3StrICmp(pUsing->a[k].zName, zCol)==0 ){
69718 pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing);
78046 sqlite3IdListDelete(db, pItem->pUsing);
78061 ** pDatabase parameters are NULL for subqueries. The pOn and pUsing
78075 IdList *pUsing /* The USING clause of a join */
78079 if( !p && (pOn || pUsing) ){
78096 pItem->pUsing = pUsing;
78102 sqlite3IdListDelete(db, pUsing);
79106 assert( pFrom->a[0].pUsing==0 );
88188 if( pRight->pOn || pRight->pUsing ){
88208 if( pRight->pOn && pRight->pUsing ){
88230 if( pRight->pUsing ){
88231 IdList *pList = pRight->pUsing;
90797 sqlite3IdListDelete(db, pSrc->a[i+iFrom].pUsing);
91168 if( sqlite3IdListIndex(pFrom->pUsing, zName)>=0 ){