Home | History | Annotate | Download | only in dist

Lines Matching full:srclist

6801 typedef struct SrcList SrcList;
9293 ** the SrcList.a[] array.
9306 struct SrcList {
9328 ** Permitted values of the SrcList.a.jointype field
9433 SrcList *pTabList; /* List of tables in the join */
9465 SrcList *pSrcList; /* One or more tables used to resolve names */
9502 SrcList *pSrc; /* The FROM clause */
10133 SQLITE_PRIVATE void sqlite3DropTable(Parse*, SrcList*, int, int);
10142 SQLITE_PRIVATE void sqlite3Insert(Parse*, SrcList*, ExprList*, Select*, IdList*, int);
10146 SQLITE_PRIVATE SrcList *sqlite3SrcListEnlarge(sqlite3*, SrcList*, int, int);
10147 SQLITE_PRIVATE SrcList *sqlite3SrcListAppend(sqlite3*, SrcList*, Token*, Token*);
10148 SQLITE_PRIVATE SrcList *sqlite3SrcListAppendFromTerm(Parse*, SrcList*, Token*, Token*,
10150 SQLITE_PRIVATE void sqlite3SrcListIndexedBy(Parse *, SrcList *, Token *);
10152 SQLITE_PRIVATE void sqlite3SrcListShiftJoinType(SrcList*);
10153 SQLITE_PRIVATE void sqlite3SrcListAssignCursors(Parse*, SrcList*);
10155 SQLITE_PRIVATE void sqlite3SrcListDelete(sqlite3*, SrcList*);
10156 SQLITE_PRIVATE Index *sqlite3CreateIndex(Parse*,Token*,Token*,SrcList*,ExprList*,int,Token*,
10158 SQLITE_PRIVATE void sqlite3DropIndex(Parse*, SrcList*, int);
10160 SQLITE_PRIVATE Select *sqlite3SelectNew(Parse*,ExprList*,SrcList*,Expr*,ExprList*,
10163 SQLITE_PRIVATE Table *sqlite3SrcListLookup(Parse*, SrcList*);
10167 SQLITE_PRIVATE Expr *sqlite3LimitWhere(Parse *, SrcList *, Expr *, ExprList *, Expr *, Expr *, char *);
10169 SQLITE_PRIVATE void sqlite3DeleteFrom(Parse*, SrcList*, Expr*);
10170 SQLITE_PRIVATE void sqlite3Update(Parse*, SrcList*, ExprList*, Expr*, int);
10171 SQLITE_PRIVATE WhereInfo *sqlite3WhereBegin(Parse*, SrcList*, Expr*, ExprList**, u16);
10234 SQLITE_PRIVATE SrcList *sqlite3SrcListDup(sqlite3*,SrcList*,int);
10251 SQLITE_PRIVATE void sqlite3BeginTrigger(Parse*, Token*,Token*,int,int,IdList*,SrcList*,
10254 SQLITE_PRIVATE void sqlite3DropTrigger(Parse*, SrcList*, int);
10288 SQLITE_PRIVATE void sqlite3AuthRead(Parse*,Expr*,Schema*,SrcList*);
10304 SQLITE_PRIVATE int sqlite3FixSrcList(DbFixer*, SrcList*);
10394 SQLITE_PRIVATE void sqlite3AlterRenameTable(Parse*, SrcList*, Token*);
10405 SQLITE_PRIVATE void sqlite3AlterBeginAddColumn(Parse *, SrcList *);
10433 SQLITE_PRIVATE Expr *sqlite3CreateColumnExpr(sqlite3 *, SrcList *, int, int);
10512 SQLITE_PRIVATE void sqlite3FkDropTable(Parse*, SrcList *, Table*);
16395 #define etSRCLIST 13 /* a pointer to a SrcList */
17016 SrcList *pSrc = va_arg(ap, SrcList*);
18560 ** %S Insert the first element of a SrcList
18593 ** %S Insert the first element of a SrcList
59261 SrcList *pSrc;
59457 SrcList *pSrcList = pNC->pSrcList;
59705 ** from datasource iSrc datasource in SrcList pSrc.
59707 SQLITE_PRIVATE Expr *sqlite3CreateColumnExpr(sqlite3 *db, SrcList *pSrc, int iSrc, int iCol){
59748 SrcList *pSrcList = pNC->pSrcList;
59763 SrcList *pSrcList = pNC->pSrcList;
61332 ** Any tables that the SrcList might point to are not duplicated.
61378 SQLITE_PRIVATE SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){
61379 SrcList *pNew;
61842 SrcList *pSrc;
64019 SrcList *pSrcList = pNC->pSrcList;
64608 SrcList *pSrc, /* The table to rename. */
64956 SQLITE_PRIVATE void sqlite3AlterBeginAddColumn(Parse *pParse, SrcList *pSrc){
66120 SrcList *pList /* The Source list to check and modify */
66359 SrcList *pTabList /* All table that pExpr might refer to */
67937 SrcList sSrc; /* Fake SrcList for pParse->pNewTable */
68438 SQLITE_PRIVATE void sqlite3DropTable(Parse *pParse, SrcList *pName, int isView, int noErr){
68844 SrcList *pTblName, /* Table to index. Use pParse->pNewTable if 0 */
69343 SQLITE_PRIVATE void sqlite3DropIndex(Parse *pParse, SrcList *pName, int ifExists){
69512 ** Expand the space allocated for the given SrcList object by
69516 ** For example, suppose a SrcList initially contains two entries: A,B.
69527 ** If a memory allocation fails the SrcList is unchanged. The
69530 SQLITE_PRIVATE SrcList *sqlite3SrcListEnlarge(
69532 SrcList *pSrc, /* The SrcList to be enlarged */
69546 SrcList *pNew;
69573 /* Return a pointer to the enlarged SrcList */
69579 ** Append a new table name to the given SrcList. Create a new SrcList if
69580 ** need be. A new entry is created in the SrcList even if pTable is NULL.
69582 ** A SrcList is returned, or NULL if there is an OOM error. The returned
69583 ** SrcList might be the same as the SrcList that was input or it might be
69590 ** The SrcList.a[].zName field is filled with the table name which might
69592 ** SrcList.a[].zDatabase is filled with the database name from pTable,
69610 ** before being added to the SrcList.
69612 SQLITE_PRIVATE SrcList *sqlite3SrcListAppend(
69614 SrcList *pList, /* Append to this SrcList. NULL creates a new SrcList */
69621 pList = sqlite3DbMallocZero(db, sizeof(SrcList) );
69645 ** Assign VdbeCursor index numbers to all tables in a SrcList
69647 SQLITE_PRIVATE void sqlite3SrcListAssignCursors(Parse *pParse, SrcList *pList){
69663 ** Delete an entire SrcList including all its substructure.
69665 SQLITE_PRIVATE void sqlite3SrcListDelete(sqlite3 *db, SrcList *pList){
69695 ** Return a new SrcList which encodes is the FROM with the new
69698 SQLITE_PRIVATE SrcList *sqlite3SrcListAppendFromTerm(
69700 SrcList *p, /* The left part of the FROM clause already seen */
69742 SQLITE_PRIVATE void sqlite3SrcListIndexedBy(Parse *pParse, SrcList *p, Token *pIndexedBy){
69772 SQLITE_PRIVATE void sqlite3SrcListShiftJoinType(SrcList *p){
70651 SQLITE_PRIVATE Table *sqlite3SrcListLookup(Parse *pParse, SrcList *pSrc){
70721 SrcList *pFrom;
70753 SrcList *pSrc, /* the FROM clause -- which tables to scan */
70764 SrcList *pSelectSrc = NULL; /* SELECT rowid FROM x ... (dup of pSrc) */
70845 SrcList *pTabList, /* The table from which we should delete things */
70876 ** put in an SrcList structure because some of the subroutines we
70878 ** an SrcList* parameter instead of just a Table* parameter.
73251 SrcList *pSrc, /* SrcList containing the table to scan */
73398 ** being dropped from the database. The SrcList passed as the second argument
73413 SQLITE_PRIVATE void sqlite3FkDropTable(Parse *pParse, SrcList *pName, Table *pTab){
73570 SrcList *pSrc;
73586 /* Create a SrcList structure containing a single table (the table
74418 SrcList *pTabList, /* Name of table into which we are inserting */
79282 SrcList *pSrc, /* the FROM clause -- which tables to scan */
79431 SrcList *pSrc, /* Array of tables to search */
79461 ** where tab1 is the iSrc'th table in SrcList pSrc and tab2 is the
79467 SrcList *pSrc, /* List of tables in FROM clause */
79550 SrcList *pSrc; /* All tables in the FROM clause */
80152 SrcList *pTabList = pNC->pSrcList;
80255 SrcList *pTabList, /* List of tables */
80295 SrcList *pTabList, /* List of tables */
81673 SrcList *pSrc;
81811 SrcList *pSrc; /* The FROM clause of the outer query */
81812 SrcList *pSubSrc; /* The FROM clause of the subquery */
82266 ** (2) Fill in the pTabList->a[].pTab fields in the SrcList that
82286 SrcList *pTabList;
82555 SrcList *pTabList;
82800 SrcList *pTabList; /* List of tables to select from */
83799 SrcList *pTableName,/* The name of the table/view the trigger applies to */
84184 SrcList *pName, int noErr){
84353 ** Convert the pStep->target token into a SrcList and return a pointer
84354 ** to that SrcList.
84357 ** forming the SrcList. This prevents a trigger in one database from
84362 static SrcList *targetSrcList(
84367 SrcList *pSrc; /* SrcList to be returned */
84826 SrcList *pSrc, /* The virtual table to be modified */
84895 SrcList *pTabList, /* The table in which we should change things */
85402 SrcList *pSrc, /* The virtual table to be modified */
87340 static void exprAnalyze(SrcList*, WhereClause*, int);
87348 SrcList *pTabList, /* the FROM clause */
87583 SrcList *pSrc, /* the FROM clause */
87833 SrcList *pSrc, /* the FROM clause */
90009 SrcList *pOrTab; /* Shortened table list or OR-clause generation */
90028 /* Set up a new SrcList ni pOrTab containing the table being scanned
90030 ** This becomes the SrcList in the recursive call to sqlite3WhereBegin().
90299 SrcList *pTabList, /* A list of all tables to be scanned */
90741 SrcList *pTabList = pWInfo->pTabList;
91047 SrcList* yy65;
93675 SrcList *pSrc = sqlite3SrcListAppend(pParse->db, 0,&yymsp[-1].minor.yy0,&yymsp[0].minor.yy0);