Lines Matching refs:nRowEst
20401 LogEst nRowEst; /* Estimated number of rows in the table */ member
150652 pSub->nSelectRow = pCteUse->nRowEst;
150700 pCteUse->nRowEst = pSub->nSelectRow;
164334 tRowcnt nRowEst = 0; /* New estimate of the number of rows */
164341 nRowEst += nEst;
164346 if( nRowEst > (tRowcnt)nRow0 ) nRowEst = nRow0;
164347 *pnRow = nRowEst;
164348 WHERETRACE(0x20,("IN row estimate: est=%d\n", nRowEst));
167341 static int wherePathSolver(WhereInfo *pWInfo, LogEst nRowEst){
167370 nRowEst, pParse->nQueryLoop));
167377 if( pWInfo->pOrderBy==0 || nRowEst==0 ){
167469 pWInfo, nRowEst, nOrderBy, isOrdered
167657 && nRowEst
210484 i64 nRowEst; /* Estimated number of rows in this table */
212413 nRow = pRtree->nRowEst >> (iIdx/2);
213625 pRtree->nRowEst = RTREE_DEFAULT_ROWEST;
213639 pRtree->nRowEst = MAX(nRow, RTREE_MIN_ROWEST);