Lines Matching defs:nRowEst
10181 tRowcnt nRowEst; /* Estimated rows in table - from sqlite_stat1 table */
80178 if( i==0 ) pTable->nRowEst = v;
82069 pTable->nRowEst = 1000000;
84194 a[0] = pIdx->pTable->nRowEst;
95935 pTab->nRowEst = 1000000;
97785 pTab->nRowEst = 1000000;
98226 pTab->nRowEst
98415 pItem->pTab->nRowEst = (unsigned)pSub->nSelectRow;
104529 nTableRow = pTable->nRowEst;
105394 double nRowEst = (double)0; /* New estimate of the number of rows */
105401 nRowEst += nEst;
105404 if( nRowEst > p->aiRowEst[0] ) nRowEst = p->aiRowEst[0];
105405 *pnRow = nRowEst;
105406 WHERETRACE(("IN row estimate: est=%g\n", nRowEst));
105493 aiRowEstPk[0] = pSrc->pTab->nRowEst;