Home | History | Annotate | Download | only in dist

Lines Matching full:srclist

8152 typedef struct SrcList SrcList;
10724 ** the SrcList.a[] array.
10740 struct SrcList {
10767 ** Permitted values of the SrcList.a.jointype field
10874 SrcList *pTabList; /* List of tables in the join */
10911 SrcList *pSrcList; /* One or more tables used to resolve names */
10951 SrcList *pSrc; /* The FROM clause */
11641 SQLITE_PRIVATE void sqlite3DropTable(Parse*, SrcList*, int, int);
11651 SQLITE_PRIVATE void sqlite3Insert(Parse*, SrcList*, ExprList*, Select*, IdList*, int);
11655 SQLITE_PRIVATE SrcList *sqlite3SrcListEnlarge(sqlite3*, SrcList*, int, int);
11656 SQLITE_PRIVATE SrcList *sqlite3SrcListAppend(sqlite3*, SrcList*, Token*, Token*);
11657 SQLITE_PRIVATE SrcList *sqlite3SrcListAppendFromTerm(Parse*, SrcList*, Token*, Token*,
11659 SQLITE_PRIVATE void sqlite3SrcListIndexedBy(Parse *, SrcList *, Token *);
11661 SQLITE_PRIVATE void sqlite3SrcListShiftJoinType(SrcList*);
11662 SQLITE_PRIVATE void sqlite3SrcListAssignCursors(Parse*, SrcList*);
11664 SQLITE_PRIVATE void sqlite3SrcListDelete(sqlite3*, SrcList*);
11665 SQLITE_PRIVATE Index *sqlite3CreateIndex(Parse*,Token*,Token*,SrcList*,ExprList*,int,Token*,
11667 SQLITE_PRIVATE void sqlite3DropIndex(Parse*, SrcList*, int);
11669 SQLITE_PRIVATE Select *sqlite3SelectNew(Parse*,ExprList*,SrcList*,Expr*,ExprList*,
11672 SQLITE_PRIVATE Table *sqlite3SrcListLookup(Parse*, SrcList*);
11676 SQLITE_PRIVATE Expr *sqlite3LimitWhere(Parse *, SrcList *, Expr *, ExprList *, Expr *, Expr *, char *);
11678 SQLITE_PRIVATE void sqlite3DeleteFrom(Parse*, SrcList*, Expr*);
11679 SQLITE_PRIVATE void sqlite3Update(Parse*, SrcList*, ExprList*, Expr*, int);
11680 SQLITE_PRIVATE WhereInfo *sqlite3WhereBegin(Parse*, SrcList*, Expr*, ExprList**,ExprList*,u16);
11745 SQLITE_PRIVATE SrcList *sqlite3SrcListDup(sqlite3*,SrcList*,int);
11762 SQLITE_PRIVATE void sqlite3BeginTrigger(Parse*, Token*,Token*,int,int,IdList*,SrcList*,
11765 SQLITE_PRIVATE void sqlite3DropTrigger(Parse*, SrcList*, int);
11799 SQLITE_PRIVATE void sqlite3AuthRead(Parse*,Expr*,Schema*,SrcList*);
11813 SQLITE_PRIVATE int sqlite3FixSrcList(DbFixer*, SrcList*);
11918 SQLITE_PRIVATE void sqlite3AlterRenameTable(Parse*, SrcList*, Token*);
11929 SQLITE_PRIVATE void sqlite3AlterBeginAddColumn(Parse *, SrcList *);
11960 SQLITE_PRIVATE Expr *sqlite3CreateColumnExpr(sqlite3 *, SrcList *, int, int);
12045 SQLITE_PRIVATE void sqlite3FkDropTable(Parse*, SrcList *, Table*);
19400 #define etSRCLIST 13 /* a pointer to a SrcList */
20006 SrcList *pSrc = va_arg(ap, SrcList*);
21153 ** %S Insert the first element of a SrcList
21186 ** %S Insert the first element of a SrcList
73162 SrcList *pSrc;
73378 SrcList *pSrcList = pNC->pSrcList;
73614 ** from datasource iSrc in SrcList pSrc.
73616 SQLITE_PRIVATE Expr *sqlite3CreateColumnExpr(sqlite3 *db, SrcList *pSrc, int iSrc, int iCol){
73659 SrcList *pSrcList = pNC->pSrcList;
73674 SrcList *pSrcList = pNC->pSrcList;
75268 ** Any tables that the SrcList might point to are not duplicated.
75315 SQLITE_PRIVATE SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){
75316 SrcList *pNew;
75778 SrcList *pSrc;
78238 SrcList *pSrcList = pNC->pSrcList;
78862 SrcList *pSrc, /* The table to rename. */
79214 SQLITE_PRIVATE void sqlite3AlterBeginAddColumn(Parse *pParse, SrcList *pSrc){
80880 SrcList *pList /* The Source list to check and modify */
81119 SrcList *pTabList /* All table that pExpr might refer to */
82711 SrcList sSrc; /* Fake SrcList for pParse->pNewTable */
83312 SQLITE_PRIVATE void sqlite3DropTable(Parse *pParse, SrcList *pName, int isView, int noErr){
83698 SrcList *pTblName, /* Table to index. Use pParse->pNewTable if 0 */
84210 SQLITE_PRIVATE void sqlite3DropIndex(Parse *pParse, SrcList *pName, int ifExists){
84368 ** Expand the space allocated for the given SrcList object by
84372 ** For example, suppose a SrcList initially contains two entries: A,B.
84383 ** If a memory allocation fails the SrcList is unchanged. The
84386 SQLITE_PRIVATE SrcList *sqlite3SrcListEnlarge(
84388 SrcList *pSrc, /* The SrcList to be enlarged */
84402 SrcList *pNew;
84429 /* Return a pointer to the enlarged SrcList */
84435 ** Append a new table name to the given SrcList. Create a new SrcList if
84436 ** need be. A new entry is created in the SrcList even if pTable is NULL.
84438 ** A SrcList is returned, or NULL if there is an OOM error. The returned
84439 ** SrcList might be the same as the SrcList that was input or it might be
84446 ** The SrcList.a[].zName field is filled with the table name which might
84448 ** SrcList.a[].zDatabase is filled with the database name from pTable,
84466 ** before being added to the SrcList.
84468 SQLITE_PRIVATE SrcList *sqlite3SrcListAppend(
84470 SrcList *pList, /* Append to this SrcList. NULL creates a new SrcList */
84477 pList = sqlite3DbMallocZero(db, sizeof(SrcList) );
84501 ** Assign VdbeCursor index numbers to all tables in a SrcList
84503 SQLITE_PRIVATE void sqlite3SrcListAssignCursors(Parse *pParse, SrcList *pList){
84519 ** Delete an entire SrcList including all its substructure.
84521 SQLITE_PRIVATE void sqlite3SrcListDelete(sqlite3 *db, SrcList *pList){
84551 ** Return a new SrcList which encodes is the FROM with the new
84554 SQLITE_PRIVATE SrcList *sqlite3SrcListAppendFromTerm(
84556 SrcList *p, /* The left part of the FROM clause already seen */
84598 SQLITE_PRIVATE void sqlite3SrcListIndexedBy(Parse *pParse, SrcList *p, Token *pIndexedBy){
84628 SQLITE_PRIVATE void sqlite3SrcListShiftJoinType(SrcList *p){
85525 ** While a SrcList can in general represent multiple tables and subqueries
85538 SQLITE_PRIVATE Table *sqlite3SrcListLookup(Parse *pParse, SrcList *pSrc){
85608 SrcList *pFrom;
85640 SrcList *pSrc, /* the FROM clause -- which tables to scan */
85651 SrcList *pSelectSrc = NULL; /* SELECT rowid FROM x ... (dup of pSrc) */
85731 SrcList *pTabList, /* The table from which we should delete things */
85762 ** put in an SrcList structure because some of the subroutines we
85764 ** an SrcList* parameter instead of just a Table* parameter.
88248 SrcList *pSrc, /* SrcList containing the table to scan */
88396 ** being dropped from the database. The SrcList passed as the second argument
88411 SQLITE_PRIVATE void sqlite3FkDropTable(Parse *pParse, SrcList *pName, Table *pTab){
88583 SrcList *pSrc;
88599 /* Create a SrcList structure containing a single table (the table
89434 SrcList *pTabList, /* Name of table into which we are inserting */
94590 SrcList *pSrc, /* the FROM clause -- which tables to scan */
94744 SrcList *pSrc, /* Array of tables to search */
94774 ** where tab1 is the iSrc'th table in SrcList pSrc and tab2 is the
94780 SrcList *pSrc, /* List of tables in FROM clause */
94863 SrcList *pSrc; /* All tables in the FROM clause */
95566 SrcList *pTabList = pNC->pSrcList;
95669 SrcList *pTabList, /* List of tables */
95709 SrcList *pTabList, /* List of tables */
97111 SrcList *pSrc;
97258 SrcList *pSrc; /* The FROM clause of the outer query */
97259 SrcList *pSubSrc; /* The FROM clause of the subquery */
97719 ** (2) Fill in the pTabList->a[].pTab fields in the SrcList that
97739 SrcList *pTabList;
98008 SrcList *pTabList;
98301 SrcList *pTabList; /* List of tables to select from */
99437 SrcList *pTableName,/* The name of the table/view the trigger applies to */
99839 SQLITE_PRIVATE void sqlite3DropTrigger(Parse *pParse, SrcList *pName, int noErr){
100020 ** Convert the pStep->target token into a SrcList and return a pointer
100021 ** to that SrcList.
100024 ** forming the SrcList. This prevents a trigger in one database from
100029 static SrcList *targetSrcList(
100034 SrcList *pSrc; /* SrcList to be returned */
100497 SrcList *pSrc, /* The virtual table to be modified */
100567 SrcList *pTabList, /* The table in which we should change things */
101077 SrcList *pSrc, /* The virtual table to be modified */
103051 SrcList *pSrc = pS->pSrc;
103206 static void exprAnalyze(SrcList*, WhereClause*, int);
103214 SrcList *pTabList, /* the FROM clause */
103436 SrcList *pSrc, /* the FROM clause */
103689 SrcList *pSrc, /* the FROM clause */
104096 SrcList *pTabList,
106288 SrcList *pTabList, /* Table list this loop refers to */
106849 SrcList *pOrTab; /* Shortened table list or OR-clause generation */
106868 /* Set up a new SrcList ni pOrTab containing the table being scanned
106870 ** This becomes the SrcList in the recursive call to sqlite3WhereBegin().
107185 SrcList *pTabList, /* A list of all tables to be scanned */
107707 SrcList *pTabList = pWInfo->pTabList;
108033 SrcList* yy347;
110698 SrcList *pSrc = sqlite3SrcListAppend(pParse->db, 0,&yymsp[-1].minor.yy0,&yymsp[0].minor.yy0);