Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c154481 Select *pRecTerm; /* Left-most recursive term */ local
154533 pRecTerm = pSel;
154535 while( bMayRecursive && pRecTerm->op==pSel->op ){
154537 SrcList *pSrc = pRecTerm->pSrc;
154538 assert( pRecTerm->pPrior!=0 );
154550 if( pRecTerm->selFlags & SF_Recursive ){
154556 pRecTerm->selFlags |= SF_Recursive;
154561 if( (pRecTerm->selFlags & SF_Recursive)==0 ) break;
154562 pRecTerm = pRecTerm->pPrior;
154570 assert( pRecTerm!=0 );
[all …]