Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/sqlite3/
Dshell.c12178 IdxConstraint *pCon; in idxCreateFromWhere() local
12182 for(pCon=pScan->pEq; pCon; pCon=pCon->pNext){ in idxCreateFromWhere()
12183 if( !idxFindConstraint(p1, pCon) && !idxFindConstraint(pTail, pCon) ){ in idxCreateFromWhere()
12184 pCon->pLink = p1; in idxCreateFromWhere()
12185 p1 = pCon; in idxCreateFromWhere()
12196 for(pCon=pScan->pRange; rc==SQLITE_OK && pCon; pCon=pCon->pNext){ in idxCreateFromWhere()
12197 assert( pCon->pLink==0 ); in idxCreateFromWhere()
12198 if( !idxFindConstraint(p1, pCon) && !idxFindConstraint(pTail, pCon) ){ in idxCreateFromWhere()
12199 rc = idxCreateFromCons(p, pScan, p1, pCon); in idxCreateFromWhere()