/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | sqliteInt.h | 240 typedef struct SrcList SrcList; typedef 768 struct SrcList { struct 823 SrcList *pTabList; /* List of tables in the join */ 854 SrcList *pSrc; /* The FROM clause */ 1157 void sqliteInsert(Parse*, SrcList*, ExprList*, Select*, IdList*, int); 1160 SrcList *sqliteSrcListAppend(SrcList*, Token*, Token*); 1161 void sqliteSrcListAddAlias(SrcList*, Token*); 1162 void sqliteSrcListAssignCursors(Parse*, SrcList*); 1164 void sqliteSrcListDelete(SrcList*); 1165 void sqliteCreateIndex(Parse*,Token*,SrcList*,IdList*,int,Token*,Token*); [all …]
|
H A D | trigger.c | 47 SrcList *pTableName,/* The name of the table/view the trigger applies to */ in sqliteBeginTrigger() 388 void sqliteDropTrigger(Parse *pParse, SrcList *pName){ in sqliteDropTrigger() 576 static SrcList *targetSrcList( in targetSrcList() 582 SrcList *pSrc; /* SrcList to be returned */ in targetSrcList() 623 SrcList *pSrc; in codeTriggerProgram() 633 SrcList *pSrc; in codeTriggerProgram() 642 SrcList *pSrc; in codeTriggerProgram() 721 SrcList dummyTablist; in sqliteCodeRowTrigger()
|
H A D | delete.c | 24 Table *sqliteSrcListLookup(Parse *pParse, SrcList *pSrc){ in sqliteSrcListLookup() 58 SrcList *pTabList, /* The table from which we should delete things */ in sqliteDeleteFrom()
|
H A D | build.c | 1475 SrcList *pTable, /* Name of the table to index. Use pParse->pNewTable if 0 */ in sqliteCreateIndex() 1757 void sqliteDropIndex(Parse *pParse, SrcList *pName){ in sqliteDropIndex() 1896 SrcList *sqliteSrcListAppend(SrcList *pList, Token *pTable, Token *pDatabase){ in sqliteSrcListAppend() 1898 pList = sqliteMalloc( sizeof(SrcList) ); in sqliteSrcListAppend() 1903 SrcList *pNew; in sqliteSrcListAppend() 1950 void sqliteSrcListAssignCursors(Parse *pParse, SrcList *pList){ in sqliteSrcListAssignCursors() 1962 void sqliteSrcListAddAlias(SrcList *pList, Token *pToken){ in sqliteSrcListAddAlias() 1999 void sqliteSrcListDelete(SrcList *pList){ in sqliteSrcListDelete()
|
H A D | select.c | 25 SrcList *pSrc, /* the FROM clause -- which tables to scan */ in sqliteSelectNew() 209 SrcList *pSrc; in sqliteProcessJoin() 660 SrcList *pTabList, /* List of tables */ in generateColumnTypes() 700 SrcList *pTabList, /* List of tables */ in generateColumnNames() 859 SrcList *pTabList; in fillInColumnList() 1050 SrcList *pSrc = p->pSrc; in sqliteSelectUnbind() 1642 SrcList *pSrc; /* The FROM clause of the outer query */ in flattenSubquery() 1643 SrcList *pSubSrc; /* The FROM clause of the subquery */ in flattenSubquery() 1856 SrcList *pSrc; in simpleMinMaxQuery() 2022 SrcList *pTabList; /* List of tables to select from */ in sqliteSelect()
|
H A D | copy.c | 31 SrcList *pTableName, /* The name of the table into which we will insert */ in sqliteCopy()
|
H A D | parse.y | 349 %type seltablist {SrcList*} 351 %type stl_prefix {SrcList*} 353 %type from {SrcList*} 682 SrcList *pSrc = sqliteSrcListAppend(0, &Y, &D); 688 SrcList *pSrc = sqliteSrcListAppend(0, &Y, &D); 734 SrcList *pSrc = sqliteSrcListAppend(0, &Y, &D); 802 SrcList *pTab = sqliteSrcListAppend(0, &E, &DB);
|
H A D | auth.c | 106 SrcList *pTabList /* All table that pExpr might refer to */ in sqliteAuthRead()
|
H A D | expr.c | 180 SrcList *sqliteSrcListDup(SrcList *p){ in sqliteSrcListDup() 181 SrcList *pNew; in sqliteSrcListDup() 414 SrcList *pSrcList, /* List of tables used to resolve column names */ in lookupName() 631 SrcList *pSrcList, /* List of tables used to resolve column names */ in sqliteExprResolveIds()
|
H A D | printf.c | 578 SrcList *pSrc = va_arg(ap, SrcList*); in vxprintf()
|
H A D | attach.c | 220 SrcList *pList /* The Source list to check and modify */ in sqliteFixSrcList()
|
H A D | insert.c | 88 SrcList *pTabList, /* Name of table into which we are inserting */ in sqliteInsert() 239 SrcList dummy; in sqliteInsert()
|
H A D | update.c | 28 SrcList *pTabList, /* The table in which we should change things */ in sqliteUpdate()
|
H A D | where.c | 382 SrcList *pTabList, /* A list of all tables to be scanned */ in sqliteWhereBegin() 1194 SrcList *pTabList = pWInfo->pTabList; in sqliteWhereEnd()
|
/illumos-gate/usr/src/lib/libsqlite/test/ |
H A D | misc2.test | 103 # There were some issues with expanding a SrcList object using a call 104 # to sqliteSrcListAppend() if the SrcList had previously been duplicated
|