Searched refs:pSelect (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/sqlite3/
H A Dsqlite3.c17657 Select *pSelect; /* NULL for tables. Points to definition if a view. */ member in struct:Table
18125 ** Expr.x.pSelect is used if the expression is a sub-select or an expression of
18127 ** Expr.flags mask, then Expr.x.pSelect is valid. Otherwise, Expr.x.pList is
18164 ** the subtrees in Expr.x.pList or Expr.x.pSelect are always separately
18192 Select *pSelect; /* EP_xIsSelect and op = IN, EXISTS, SELECT */ member in union:Expr::__anon15
18239 #define EP_VarSelect 0x000020 /* pSelect is correlated, not constant */
18245 #define EP_xIsSelect 0x000800 /* x.pSelect is valid (otherwise x.pList is) */
18257 #define EP_Leaf 0x800000 /* Expr.pLeft, .pRight, .u.pSelect all NULL */
18414 Select *pSelect; /* A SELECT statement used in place of a table name */ member in struct:SrcItem
19125 * pSelect
19153 Select *pSelect; /* SELECT statement or RHS of INSERT INTO SELECT ... */ member in struct:TriggerStep
19323 Select *pSelect; /* HAVING to WHERE clause ctx */ member in union:Walker::__anon26
19378 Select *pSelect; /* The definition of this CTE */ member in struct:Cte
98592 sqlite3WalkerDepthIncrease(Walker *pWalker, Select *pSelect) argument
98597 sqlite3WalkerDepthDecrease(Walker *pWalker, Select *pSelect) argument
99872 resolveOrderByTermToExprList( Parse *pParse, Select *pSelect, Expr *pE ) argument
100063 sqlite3ResolveOrderGroupBy( Parse *pParse, Select *pSelect, ExprList *pOrderBy, const char *zType ) argument
100110 windowRemoveExprFromSelect(Select *pSelect, Expr *pExpr) argument
100141 resolveOrderGroupBy( NameContext *pNC, Select *pSelect, ExprList *pOrderBy, const char *zType ) argument
101372 heightOfSelect(Select *pSelect, int *pnHeight) argument
101584 sqlite3PExprAddSelect(Parse *pParse, Expr *pExpr, Select *pSelect) argument
102094 Select *pSelect = pWalker->u.pSelect; local
103432 Select *pSelect = (pExpr->flags & EP_xIsSelect) ? pExpr->x.pSelect : 0; local
103592 Select *pSelect = pExpr->x.pSelect; local
107541 renameWalkWith(Walker *pWalker, Select *pSelect) argument
108179 Select *pSelect = sParse.pNewTable->pSelect; local
108296 renameTableSelectCb(Walker *pWalker, Select *pSelect) argument
108380 Select *pSelect = pTab->pSelect; local
111169 fixSelectCb(Walker *p, Select *pSelect) argument
114258 sqlite3CreateView( Parse *pParse, Token *pBegin, Token *pName1, Token *pName2, ExprList *pCNames, Select *pSelect, int isTemp, int noErr ) argument
117608 Select *pSelect = NULL; /* Complete SELECT tree */ local
121929 Select *pSelect = 0; /* If RESTRICT, "SELECT RAISE(...)" */ local
122791 sqlite3Insert( Parse *pParse, SrcList *pTabList, Select *pSelect, IdList *pColumn, int onError, Upsert *pUpsert ) argument
124846 xferOptimization( Parse *pParse, Table *pDest, Select *pSelect, int onError, int iDbDest ) argument
131706 innerLoopLoadRow( Parse *pParse, Select *pSelect, RowLoadInfo *pInfo ) argument
131727 makeSorterRecord( Parse *pParse, SortCtx *pSort, Select *pSelect, int regBase, int nBase ) argument
131748 pushOntoSorter( Parse *pParse, SortCtx *pSort, Select *pSelect, int regData, int regOrigData, int nData, int nPrefixReg ) argument
133230 sqlite3SelectAddColumnTypeAndCollation( Parse *pParse, Table *pTab, Select *pSelect, char aff ) argument
133281 sqlite3ResultSetOfSelect(Parse *pParse, Select *pSelect, char aff) argument
134798 recomputeColumnsUsed( Select *pSelect, SrcItem *pSrcItem ) argument
136663 sqlite3SelectExpand(Parse *pParse, Select *pSelect) argument
136728 sqlite3SelectAddTypeInfo(Parse *pParse, Select *pSelect) argument
138925 sqlite3TriggerSelectStep( sqlite3 *db, Select *pSelect, const char *zStart, const char *zEnd ) argument
138981 sqlite3TriggerInsertStep( Parse *pParse, Token *pTableName, IdList *pColumn, Select *pSelect, u8 orconf, Upsert *pUpsert, const char *zStart, const char *zEnd ) argument
139546 Select *pSelect = sqlite3SelectDup(db, pStep->pSelect, 0); local
140120 Select *pSelect = 0; local
144333 Select *pSelect; /* Pointer to the SELECT on the RHS */ local
154766 selectWindowRewriteSelectCb(Walker *pWalker, Select *pSelect) argument
155294 sqlite3WindowCodeInit(Parse *pParse, Select *pSelect) argument
157133 attachWithToSelect(Parse *pParse, Select *pSelect, With *pWith) argument
161458 Select *pSelect = sqlite3SelectNew(pParse, 0,pSrc,0,0,0,0,0,0); local
181278 langidFromSelect(Fts3Table *p, sqlite3_stmt *pSelect) argument
181297 sqlite3_stmt *pSelect; local
184464 sqlite3_stmt *pSelect = 0; /* SELECT to read %_segdir entry */ local
184749 sqlite3_stmt *pSelect = 0; /* Select statement to read idx values */ local
185035 sqlite3_stmt *pSelect = 0; local
187261 sqlite3_stmt *pSelect = 0; local
199269 sqlite3_stmt *pSelect; /* Source data */ member in struct:RbuObjIter
207871 sessionSelectBind( sqlite3_stmt *pSelect, int nCol, u8 *abPK, SessionChange *pChange ) argument
209133 sqlite3_stmt *pSelect; /* SELECT statement */ member in struct:SessionApplyCtx
[all...]
H A Dshell.c9605 sqlite3_stmt *pSelect = 0; local
9610 rc = idxPrintfPrepareStmt(p->db, &pSelect, pzErr, zSql, zTab, zTab);
9611 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSelect) ){
9612 const char *zCreate = (const char*)sqlite3_column_text(pSelect, 0);
9615 idxFinalize(&rc, pSelect);
12623 sqlite3_stmt *pSelect; local
12628 rc = sqlite3_prepare_v2(p->db, zSelect, -1, &pSelect, 0);
12629 if( rc!=SQLITE_OK || !pSelect ){
12635 rc = sqlite3_step(pSelect);
12636 nResult = sqlite3_column_count(pSelect);
[all...]
/freebsd-11-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c9928 Select *pSelect; /* NULL for tables. Points to definition if a view. */ member in struct:Table
10248 ** Expr.x.pSelect is used if the expression is a sub-select or an expression of
10250 ** Expr.flags mask, then Expr.x.pSelect is valid. Otherwise, Expr.x.pList is
10287 ** the subtrees in Expr.x.pList or Expr.x.pSelect are always separately
10308 Select *pSelect; /* Used for sub-selects and "<expr> IN (<select>)" */ member in union:Expr::__anon6074
10341 #define EP_VarSelect 0x0020 /* pSelect is correlated, not constant */
10347 #define EP_xIsSelect 0x0800 /* x.pSelect is valid (otherwise x.pList is) */
10494 Select *pSelect; /* A SELECT statement used in place of a table name */ member in struct:SrcList::SrcList_item
10501 u8 iSelectId; /* If pSelect!=0, the id of the sub-select in EQP */
10997 * pSelect
11024 Select *pSelect; /* SELECT statment or RHS of INSERT INTO .. SELECT ... */ member in struct:TriggerStep
72462 resolveOrderByTermToExprList( Parse *pParse, Select *pSelect, Expr *pE ) argument
72625 sqlite3ResolveOrderGroupBy( Parse *pParse, Select *pSelect, ExprList *pOrderBy, const char *zType ) argument
72675 resolveOrderGroupBy( NameContext *pNC, Select *pSelect, ExprList *pOrderBy, const char *zType ) argument
76675 analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect) argument
80799 sqlite3CreateView( Parse *pParse, Token *pBegin, Token *pName1, Token *pName2, Select *pSelect, int isTemp, int noErr ) argument
83543 Select *pSelect = NULL; /* Complete SELECT tree */ local
86652 Select *pSelect = 0; /* If RESTRICT, "SELECT RAISE(...)" */ local
87313 sqlite3Insert( Parse *pParse, SrcList *pTabList, ExprList *pList, Select *pSelect, IdList *pColumn, int onError ) argument
88487 xferOptimization( Parse *pParse, Table *pDest, Select *pSelect, int onError, int iDbDest ) argument
92761 pushOntoSorter( Parse *pParse, ExprList *pOrderBy, Select *pSelect, int regData ) argument
93718 sqlite3ResultSetOfSelect(Parse *pParse, Select *pSelect) argument
95775 sqlite3SelectExpand(Parse *pParse, Select *pSelect) argument
95832 sqlite3SelectAddTypeInfo(Parse *pParse, Select *pSelect) argument
97485 sqlite3TriggerSelectStep(sqlite3 *db, Select *pSelect) argument
97528 sqlite3TriggerInsertStep( sqlite3 *db, Token *pTableName, IdList *pColumn, ExprList *pEList, Select *pSelect, u8 orconf ) argument
97895 Select *pSelect = sqlite3SelectDup(db, pStep->pSelect, 0); local
98867 Select *pSelect = 0; /* The SELECT statement */ local
123123 sqlite3_stmt *pSelect; local
126541 sqlite3_stmt *pSelect = 0; local
[all...]

Completed in 792 milliseconds