Searched refs:pWith (Results 1 – 1 of 1) sorted by relevance
19973 With *pWith; /* WITH clause attached to this select. Or NULL. */ member20365 With *pWith; /* Current WITH clause, or NULL */ member33292 SQLITE_PRIVATE void sqlite3TreeViewWith(TreeView *pView, const With *pWith, u8 moreToFollow){ in sqlite3TreeViewWith() argument33294 if( pWith==0 ) return; in sqlite3TreeViewWith()33295 if( pWith->nCte==0 ) return; in sqlite3TreeViewWith()33296 if( pWith->pOuter ){ in sqlite3TreeViewWith()33297 sqlite3TreeViewLine(pView, "WITH (0x%p, pOuter=0x%p)",pWith,pWith->pOuter); in sqlite3TreeViewWith()33299 sqlite3TreeViewLine(pView, "WITH (0x%p)", pWith); in sqlite3TreeViewWith()33301 if( pWith->nCte>0 ){ in sqlite3TreeViewWith()33303 for(i=0; i<pWith->nCte; i++){ in sqlite3TreeViewWith()[all …]