Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c20872 LogEst nRowEst; /* Estimated number of rows in the table */ member
152759 pSub->nSelectRow = pCteUse->nRowEst;
152812 pCteUse->nRowEst = pSub->nSelectRow;
166809 tRowcnt nRowEst = 0; /* New estimate of the number of rows */
166816 nRowEst += nEst;
166821 if( nRowEst > (tRowcnt)nRow0 ) nRowEst = nRow0;
166822 *pnRow = nRowEst;
166823 WHERETRACE(0x20,("IN row estimate: est=%d\n", nRowEst));
170146 static int wherePathSolver(WhereInfo *pWInfo, LogEst nRowEst){
170170 nRowEst, pParse->nQueryLoop));
[all …]