Lines Matching refs:pIdList
10462 * pIdList -> If this is an INSERT INTO ... (<column-names>) VALUES ...
10488 IdList *pIdList; /* Column names for INSERT */
92501 sqlite3IdListDelete(db, pTmp->pIdList);
92867 pTriggerStep->pIdList = pColumn;
93072 ** in pEList have an <id> which matches an identifier in pIdList,
93073 ** then return TRUE. If pIdList==NULL, then it is considered a
93078 static int checkColumnOverlap(IdList *pIdList, ExprList *pEList){
93080 if( pIdList==0 || NEVER(pEList==0) ) return 1;
93082 if( sqlite3IdListIndex(pIdList, pEList->a[e].zName)>=0 ) return 1;
93193 sqlite3IdListDup(db, pStep->pIdList),