Searched refs:pWith (Results 1 – 1 of 1) sorted by relevance
19448 With *pWith; /* WITH clause attached to this select. Or NULL. */ member19827 With *pWith; /* Current WITH clause, or NULL */ member32418 SQLITE_PRIVATE void sqlite3TreeViewWith(TreeView *pView, const With *pWith, u8 moreToFollow){ in sqlite3TreeViewWith() argument32420 if( pWith==0 ) return; in sqlite3TreeViewWith()32421 if( pWith->nCte==0 ) return; in sqlite3TreeViewWith()32422 if( pWith->pOuter ){ in sqlite3TreeViewWith()32423 sqlite3TreeViewLine(pView, "WITH (0x%p, pOuter=0x%p)",pWith,pWith->pOuter); in sqlite3TreeViewWith()32425 sqlite3TreeViewLine(pView, "WITH (0x%p)", pWith); in sqlite3TreeViewWith()32427 if( pWith->nCte>0 ){ in sqlite3TreeViewWith()32429 for(i=0; i<pWith->nCte; i++){ in sqlite3TreeViewWith()[all …]