Home
last modified time | relevance | path

Searched refs:Cte (Results 1 – 5 of 5) sorted by relevance

/sqlite-3.40.0/src/
H A DsqliteInt.h1179 typedef struct Cte Cte; typedef
4156 struct Cte { struct
4180 Cte a[1]; /* For each CTE in the WITH clause.... */ argument
5283 Cte *sqlite3CteNew(Parse*,Token*,ExprList*,Select*,u8);
5284 void sqlite3CteDelete(sqlite3*,Cte*);
5285 With *sqlite3WithAdd(Parse*,With*,Cte*);
H A Dbuild.c5572 Cte *sqlite3CteNew( in sqlite3CteNew()
5579 Cte *pNew; in sqlite3CteNew()
5601 static void cteClear(sqlite3 *db, Cte *pCte){ in cteClear()
5611 void sqlite3CteDelete(sqlite3 *db, Cte *pCte){ in sqlite3CteDelete()
5626 Cte *pCte /* CTE to add to the WITH clause */ in sqlite3WithAdd()
H A Dtreeview.c153 const struct Cte *pCte = &pWith->a[i]; in sqlite3TreeViewWith()
H A Dparse.y1723 %type wqitem {Cte*}
H A Dselect.c5374 static struct Cte *searchWith( in searchWith()
5449 Cte *pCte; /* Matched CTE (or NULL if no match) */ in resolveFromTermToCte()