Lines Matching refs:pIdList
13403 * pIdList -> If this is an INSERT INTO ... (<column-names>) VALUES ...
13429 IdList *pIdList; /* Column names for INSERT */
114504 sqlite3IdListDelete(db, pTmp->pIdList);
114884 pTriggerStep->pIdList = pColumn;
115092 ** in pEList have an <id> which matches an identifier in pIdList,
115093 ** then return TRUE. If pIdList==NULL, then it is considered a
115098 static int checkColumnOverlap(IdList *pIdList, ExprList *pEList){
115100 if( pIdList==0 || NEVER(pEList==0) ) return 1;
115102 if( sqlite3IdListIndex(pIdList, pEList->a[e].zName)>=0 ) return 1;
115217 sqlite3IdListDup(db, pStep->pIdList),