Home
last modified time | relevance | path

Searched defs:pSelect (Results 1 – 25 of 28) sorted by relevance

12

/sqlite-3.40.0/src/
H A Dwalker.c225 int sqlite3WalkerDepthIncrease(Walker *pWalker, Select *pSelect){ in sqlite3WalkerDepthIncrease()
230 void sqlite3WalkerDepthDecrease(Walker *pWalker, Select *pSelect){ in sqlite3WalkerDepthDecrease()
H A Dresolve.c1358 Select *pSelect, /* The SELECT statement with the ORDER BY clause */ in resolveOrderByTermToExprList()
1433 Select *pSelect /* The SELECT statement containing the ORDER BY */ in resolveCompoundOrderBy()
1546 Select *pSelect, /* The SELECT statement containing the clause */ in sqlite3ResolveOrderGroupBy()
1591 static void windowRemoveExprFromSelect(Select *pSelect, Expr *pExpr){ in windowRemoveExprFromSelect()
1624 Select *pSelect, /* The SELECT statement holding pOrderBy */ in resolveOrderGroupBy()
H A Dattach.c457 static int fixSelectCb(Walker *p, Select *pSelect){ in fixSelectCb()
558 Select *pSelect /* The SELECT statement to be fixed to one database */ in sqlite3FixSelect()
H A Dalter.c822 static void renameWalkWith(Walker *pWalker, Select *pSelect){ in renameWalkWith()
1517 Select *pSelect = sParse.pNewTable->u.view.pSelect; in renameColumnFunc() local
1642 static int renameTableSelectCb(Walker *pWalker, Select *pSelect){ in renameTableSelectCb()
1730 Select *pSelect = pTab->u.view.pSelect; in renameTableFunc() local
1908 Select *pSelect = sParse.pNewTable->u.view.pSelect; in renameQuotefixFunc() local
H A Dtrigger.c431 Select *pSelect, /* The SELECT statement */ in sqlite3TriggerSelectStep()
490 Select *pSelect, /* A SELECT statement that supplies values */ in sqlite3TriggerInsertStep()
1099 Select *pSelect = sqlite3SelectDup(db, pStep->pSelect, 0); in codeTriggerProgram() local
H A Dselect.c647 Select *pSelect, /* The query being coded */ in innerLoopLoadRow()
669 Select *pSelect, in makeSorterRecord()
690 Select *pSelect, /* The whole SELECT statement */ in pushOntoSorter()
2073 Select *pSelect /* Generate column names for this SELECT statement */ in sqlite3GenerateColumnNames()
2283 Select *pSelect, /* SELECT used to determine types and collations */ in sqlite3SelectAddColumnTypeAndCollation()
2335 Table *sqlite3ResultSetOfSelect(Parse *pParse, Select *pSelect, char aff){ in sqlite3ResultSetOfSelect()
3930 Select *pSelect, /* The complete SELECT statement */ in recomputeColumnsUsed()
6102 static void sqlite3SelectExpand(Parse *pParse, Select *pSelect){ in sqlite3SelectExpand()
6167 static void sqlite3SelectAddTypeInfo(Parse *pParse, Select *pSelect){ in sqlite3SelectAddTypeInfo()
H A Dexpr.c745 static void heightOfSelect(const Select *pSelect, int *pnHeight){ in heightOfSelect()
969 void sqlite3PExprAddSelect(Parse *pParse, Expr *pExpr, Select *pSelect){ in sqlite3PExprAddSelect()
1556 Select *pSelect = pWalker->u.pSelect; in gatherSelectWindowsCallback() local
2969 Select *pSelect = ExprUseXSelect(pExpr) ? pExpr->x.pSelect : 0; in exprINAffinity() local
3131 Select *pSelect = pExpr->x.pSelect; in sqlite3CodeRhsOfIN() local
6052 static int selectRefEnter(Walker *pWalker, Select *pSelect){ in selectRefEnter()
6072 static void selectRefLeave(Walker *pWalker, Select *pSelect){ in selectRefLeave()
H A Dinsert.c686 Select *pSelect, /* A SELECT statement to use as the data source */ in sqlite3Insert()
2783 Select *pSelect, /* A SELECT statement to use as the data source */ in xferOptimization()
H A Dupdate.c199 Select *pSelect = 0; in updateFromSelect() local
H A Ddelete.c190 Select *pSelect = NULL; /* Complete SELECT tree */ in sqlite3LimitWhere() local
H A Dtreeview.c1067 const Select *pSelect, in sqlite3TreeViewInsert()
H A Dfkey.c1233 Select *pSelect = 0; /* If RESTRICT, "SELECT RAISE(...)" */ in fkActionTrigger() local
H A Dwindow.c830 static int selectWindowRewriteSelectCb(Walker *pWalker, Select *pSelect){ in selectWindowRewriteSelectCb()
1388 void sqlite3WindowCodeInit(Parse *pParse, Select *pSelect){ in sqlite3WindowCodeInit()
H A Dwherecode.c485 Select *pSelect; /* Pointer to the SELECT on the RHS */ in removeUnindexableInClauseTerms() local
H A Dbuild.c2620 Select *pSelect /* Select from a "CREATE ... AS SELECT" */ in sqlite3EndTable()
2963 Select *pSelect, /* A SELECT statement that will become the new view */ in sqlite3CreateView()
H A DsqliteInt.h2301 Select *pSelect; /* View definition */ member
2851 Select *pSelect; /* EP_xIsSelect and op = IN, EXISTS, SELECT */ member
3118 Select *pSelect; /* A SELECT statement used in place of a table name */ member
3904 Select *pSelect; /* SELECT statement or RHS of INSERT INTO SELECT ... */ member
4096 Select *pSelect; /* HAVING to WHERE clause ctx */ member
4159 Select *pSelect; /* The definition of this CTE */ member
H A DwhereInt.h470 Select *pSelect; /* The entire SELECT statement containing WHERE */ member
/sqlite-3.40.0/test/
H A Dwordcount.c282 sqlite3_stmt *pSelect = 0; /* The SELECT statement */ in main() local
/sqlite-3.40.0/ext/misc/
H A Ddbdump.c551 sqlite3_stmt *pSelect; in output_sql_from_query() local
/sqlite-3.40.0/ext/fts3/
H A Dfts3_write.c1053 static int langidFromSelect(Fts3Table *p, sqlite3_stmt *pSelect){ in langidFromSelect()
1072 sqlite3_stmt *pSelect; in fts3DeleteTerms() local
4256 sqlite3_stmt *pSelect = 0; /* SELECT to read %_segdir entry */ in fts3IncrmergeLoad() local
4541 sqlite3_stmt *pSelect = 0; /* Select statement to read idx values */ in fts3RepackSegdirLevel() local
4827 sqlite3_stmt *pSelect = 0; in fts3IncrmergeHintLoad() local
H A Dfts3_snippet.c1239 sqlite3_stmt *pSelect = 0; in fts3MatchinfoValues() local
/sqlite-3.40.0/ext/fts1/
H A Dfulltext.c1079 static int query_merge(fulltext_vtab *v, sqlite3_stmt **pSelect, in query_merge()
1210 sqlite3_stmt *pSelect = NULL; in fulltext_query() local
/sqlite-3.40.0/ext/recover/
H A Dsqlite3recover.c1144 sqlite3_stmt *pSelect = 0; in recoverWriteSchema1() local
1219 sqlite3_stmt *pSelect = 0; in recoverWriteSchema2() local
/sqlite-3.40.0/ext/session/
H A Dsqlite3session.c2447 sqlite3_stmt *pSelect, /* SELECT from sessionSelectStmt() */ in sessionSelectBind()
3754 sqlite3_stmt *pSelect; /* SELECT statement */ member
4179 sqlite3_stmt *pSelect /* SELECT statement from sessionSelectRow() */ in sessionSeekToRow()
/sqlite-3.40.0/ext/expert/
H A Dsqlite3expert.c1307 sqlite3_stmt *pSelect = 0; in idxProcessOneTrigger() local

12