Home
last modified time | relevance | path

Searched refs:pUsing (Results 1 – 1 of 1) sorted by relevance

/minix3/external/public-domain/sqlite/dist/
H A Dsqlite3.c11379 IdList *pUsing; /* The USING clause of a join */ member
75127 static int nameInUsingClause(IdList *pUsing, const char *zCol){
75128 if( pUsing ){
75130 for(k=0; k<pUsing->nId; k++){
75131 if( sqlite3StrICmp(pUsing->a[k].zName, zCol)==0 ) return 1;
75292 if( nameInUsingClause(pItem->pUsing, zCol) ) continue;
77449 pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing);
87749 sqlite3IdListDelete(db, pItem->pUsing);
87778 IdList *pUsing /* The USING clause of a join */
87782 if( !p && (pOn || pUsing) ){
[all …]