Searched refs:IdList (Results 1 - 7 of 7) sorted by relevance

/osnet-11/usr/src/lib/libsqlite/src/
H A DsqliteInt.h242 typedef struct IdList IdList; typedef in typeref:struct:IdList
744 ** The IdList.a.idx field is used when the IdList represents the list of
749 ** If "a" is the k-th column of table "t", then IdList.a[0].idx==k.
751 struct IdList { struct
783 IdList *pUsing; /* The USING clause of a join */
978 IdList *pColumns; /* If this is an UPDATE OF <column-list> trigger,
1036 IdList *pIdList; /* Valid for INSERT statements only */
1150 void sqliteAddPrimaryKey(Parse*, IdList*, in
[all...]
H A Dtrigger.c49 IdList *pColumns, /* column list if this is an UPDATE OF trigger */
266 IdList *pNew = sqliteIdListDup(p->pIdList);
300 IdList *pColumn, /* List of columns in pTableName to insert into */
512 static int checkColumnOverLap(IdList *pIdList, ExprList *pEList){
H A Dexpr.c207 IdList *sqliteIdListDup(IdList *p){
208 IdList *pNew;
H A Dbuild.c683 void sqliteAddPrimaryKey(Parse *pParse, IdList *pList, int onError){
1354 IdList *pFromCol, /* Columns in this table that point to other table */
1356 IdList *pToCol, /* Columns in the other table */
1479 IdList *pList, /* A list of columns to be indexed */
1838 ** Append a new element to the given IdList. Create a new IdList if
1841 ** A new IdList is returned, or NULL if malloc() fails.
1843 IdList *sqliteIdListAppend(IdList *pList, Token *pToken){
1845 pList = sqliteMalloc( sizeof(IdList) );
[all...]
H A Dparse.y56 ** Then the "b" IdList records the list "a,b,c".
58 struct TrigEvent { int a; IdList * b; };
427 %type using_opt {IdList*}
522 %type inscollist_opt {IdList*}
524 %type inscollist {IdList*}
746 %type idxlist {IdList*}
748 %type idxlist_opt {IdList*}
H A Dinsert.c94 IdList *pColumn, /* Column names corresponding to IDLIST. */
H A Dselect.c267 IdList *pList;

Completed in 38 milliseconds