Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c20600 With *pWith; /* WITH clause attached to this select. Or NULL. */ member
20987 With *pWith; /* Current WITH clause, or NULL */ member
34128 SQLITE_PRIVATE void sqlite3TreeViewWith(TreeView *pView, const With *pWith, u8 moreToFollow){ in sqlite3TreeViewWith() argument
34130 if( pWith==0 ) return; in sqlite3TreeViewWith()
34131 if( pWith->nCte==0 ) return; in sqlite3TreeViewWith()
34132 if( pWith->pOuter ){ in sqlite3TreeViewWith()
34133 sqlite3TreeViewLine(pView, "WITH (0x%p, pOuter=0x%p)",pWith,pWith->pOuter); in sqlite3TreeViewWith()
34135 sqlite3TreeViewLine(pView, "WITH (0x%p)", pWith); in sqlite3TreeViewWith()
34137 if( pWith->nCte>0 ){ in sqlite3TreeViewWith()
34139 for(i=0; i<pWith->nCte; i++){ in sqlite3TreeViewWith()
[all …]