Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:nRowEst

9620   unsigned nRowEst;    /* Estimated rows in table - from sqlite_stat1 table */
75869 if( i==0 ) pTable->nRowEst = v;
77678 pTable->nRowEst = 1000000;
79726 a[0] = pIdx->pTable->nRowEst;
91291 pTab->nRowEst = 1000000;
93130 pTab->nRowEst = 1000000;
93562 pTab->nRowEst
93729 pItem->pTab->nRowEst = (unsigned)pSub->nSelectRow;
99418 nTableRow = pTable->nRowEst;
100202 double nRowEst; /* New estimate of the number of rows */
100219 nRowEst = p->aiRowEst[0]/(SQLITE_INDEX_SAMPLES*2);
100220 if( nRowEst<*pnRow ) *pnRow = nRowEst;
100222 nRowEst = (iUpper-iLower)*p->aiRowEst[0]/SQLITE_INDEX_SAMPLES;
100223 *pnRow = nRowEst;
100259 double nRowEst; /* New estimate of the number of rows */
100298 nRowEst = (nSpan*2+nSingle)*p->aiRowEst[0]/(2*SQLITE_INDEX_SAMPLES)
100300 if( nRowEst > p->aiRowEst[0] ) nRowEst = p->aiRowEst[0];
100301 *pnRow = nRowEst;
100303 nSpan, nSingle, nNotFound, nRowEst));
100390 aiRowEstPk[0] = pSrc->pTab->nRowEst;