Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c21518 LogEst nRowEst; /* Estimated number of rows in the table */ member
157079 pSub->nSelectRow = pCteUse->nRowEst;
157132 pCteUse->nRowEst = pSub->nSelectRow;
171193 tRowcnt nRowEst = 0; /* New estimate of the number of rows */ local
171200 nRowEst += nEst;
171205 if( nRowEst > (tRowcnt)nRow0 ) nRowEst = nRow0;
171206 *pnRow = nRowEst;
171207 WHERETRACE(0x20,("IN row estimate: est=%d\n", nRowEst));
174679 static int wherePathSolver(WhereInfo *pWInfo, LogEst nRowEst){ argument
174703 nRowEst, pParse->nQueryLoop));
[all …]