Searched refs:IdList (Results 1 – 7 of 7) sorted by relevance
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | sqliteInt.h | 239 typedef struct IdList IdList; typedef 748 struct IdList { struct 780 IdList *pUsing; /* The USING clause of a join */ 975 IdList *pColumns; /* If this is an UPDATE OF <column-list> trigger, 1033 IdList *pIdList; /* Valid for INSERT statements only */ 1147 void sqliteAddPrimaryKey(Parse*, IdList*, int); 1157 void sqliteInsert(Parse*, SrcList*, ExprList*, Select*, IdList*, int); 1158 IdList *sqliteIdListAppend(IdList*, Token*); 1159 int sqliteIdListIndex(IdList*,const char*); 1163 void sqliteIdListDelete(IdList*); [all …]
|
H A D | trigger.c | 46 IdList *pColumns, /* column list if this is an UPDATE OF trigger */ in sqliteBeginTrigger() 263 IdList *pNew = sqliteIdListDup(p->pIdList); in sqlitePersistTriggerStep() 297 IdList *pColumn, /* List of columns in pTableName to insert into */ in sqliteTriggerInsertStep() 509 static int checkColumnOverLap(IdList *pIdList, ExprList *pEList){ in checkColumnOverLap()
|
H A D | build.c | 680 void sqliteAddPrimaryKey(Parse *pParse, IdList *pList, int onError){ in sqliteAddPrimaryKey() 1351 IdList *pFromCol, /* Columns in this table that point to other table */ in sqliteCreateForeignKey() 1353 IdList *pToCol, /* Columns in the other table */ in sqliteCreateForeignKey() 1476 IdList *pList, /* A list of columns to be indexed */ in sqliteCreateIndex() 1840 IdList *sqliteIdListAppend(IdList *pList, Token *pToken){ in sqliteIdListAppend() 1842 pList = sqliteMalloc( sizeof(IdList) ); in sqliteIdListAppend() 1973 void sqliteIdListDelete(IdList *pList){ in sqliteIdListDelete() 1987 int sqliteIdListIndex(IdList *pList, const char *zName){ in sqliteIdListIndex()
|
H A D | parse.y | 56 struct TrigEvent { int a; IdList * b; }; 425 %type using_opt {IdList*} 520 %type inscollist_opt {IdList*} 522 %type inscollist {IdList*} 744 %type idxlist {IdList*} 746 %type idxlist_opt {IdList*}
|
H A D | expr.c | 204 IdList *sqliteIdListDup(IdList *p){ in sqliteIdListDup() 205 IdList *pNew; in sqliteIdListDup()
|
H A D | insert.c | 91 IdList *pColumn, /* Column names corresponding to IDLIST. */ in sqliteInsert()
|
H A D | select.c | 265 IdList *pList; in sqliteProcessJoin()
|