Searched refs:IdList (Results 1 – 9 of 9) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | sqliteInt.h | 1190 typedef struct IdList IdList; typedef 3073 struct IdList { struct 3161 IdList *pUsing; /* The USING clause of a join */ 3909 IdList *pIdList; /* Column names for INSERT */ 4544 void sqlite3ShowIdList(const IdList*); 4697 void sqlite3Insert(Parse*, SrcList*, Select*, IdList*, int, Upsert*); 4702 IdList *sqlite3IdListAppend(Parse*, IdList*, Token*); 4703 int sqlite3IdListIndex(IdList*,const char*); 4714 void sqlite3IdListDelete(sqlite3*, IdList*); 4847 IdList *sqlite3IdListDup(sqlite3*,const IdList*); [all …]
|
| H A D | treeview.c | 928 const IdList *pList, in sqlite3TreeViewBareIdList() 964 const IdList *pList, in sqlite3TreeViewIdList() 1066 const IdList *pColumnList, in sqlite3TreeViewInsert() 1270 void sqlite3ShowIdList(const IdList *p){ sqlite3TreeViewIdList(0,p,0,0); } in sqlite3ShowIdList()
|
| H A D | trigger.c | 109 IdList *pColumns, /* column list if this is an UPDATE OF trigger */ in sqlite3BeginTrigger() 489 IdList *pColumn, /* List of columns in pTableName to insert into */ in sqlite3TriggerInsertStep() 738 static int checkColumnOverlap(IdList *pIdList, ExprList *pEList){ in checkColumnOverlap()
|
| H A D | build.c | 4669 IdList *sqlite3IdListAppend(Parse *pParse, IdList *pList, Token *pToken){ in sqlite3IdListAppend() 4673 pList = sqlite3DbMallocZero(db, sizeof(IdList) ); in sqlite3IdListAppend() 4676 IdList *pNew; in sqlite3IdListAppend() 4678 sizeof(IdList) + pList->nId*sizeof(pList->a)); in sqlite3IdListAppend() 4696 void sqlite3IdListDelete(sqlite3 *db, IdList *pList){ in sqlite3IdListDelete() 4711 int sqlite3IdListIndex(IdList *pList, const char *zName){ in sqlite3IdListIndex()
|
| H A D | parse.y | 106 struct TrigEvent { int a; IdList * b; }; 1027 %type idlist_opt {IdList*} 1029 %type idlist {IdList*}
|
| H A D | alter.c | 859 const IdList *pIdList in unmapColumnIdlistNames() 1108 const IdList *pIdList, in renameColumnIdlistNames()
|
| H A D | expr.c | 1701 IdList *sqlite3IdListDup(sqlite3 *db, const IdList *p){ in sqlite3IdListDup() 1702 IdList *pNew; in sqlite3IdListDup() 1864 IdList *pColumns, /* List of names of LHS of the assignment */ in sqlite3ExprListAppendVector()
|
| H A D | select.c | 506 IdList *pUsing = 0; in sqlite3ProcessJoin() 542 IdList *pList = pRight->u3.pUsing; in sqlite3ProcessJoin() 5916 IdList *pUsing; /* USING clause for pFrom[1] */ in selectExpander()
|
| H A D | insert.c | 687 IdList *pColumn, /* Column names corresponding to IDLIST, or NULL. */ in sqlite3Insert()
|