Home
last modified time | relevance | path

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

/NextBSD/crypto/heimdal/lib/sqlite/
HDsqlite3.c9927 unsigned nRowEst; /* Estimated rows in table - from sqlite_stat1 table */ member
78152 if( i==0 ) pTable->nRowEst = v;
79973 pTable->nRowEst = 1000000;
82072 a[0] = pIdx->pTable->nRowEst;
93739 pTab->nRowEst = 1000000;
95578 pTab->nRowEst = 1000000;
96010 pTab->nRowEst
96200 pItem->pTab->nRowEst = (unsigned)pSub->nSelectRow;
102285 nTableRow = pTable->nRowEst;
103070 double nRowEst; /* New estimate of the number of rows */
[all …]
/NextBSD/contrib/sqlite3/
HDsqlite3.c121692 tRowcnt nRowEst = 0; /* New estimate of the number of rows */
121699 nRowEst += nEst;
121704 if( nRowEst > nRow0 ) nRowEst = nRow0;
121705 *pnRow = nRowEst;
121706 WHERETRACE(0x10,("IN row estimate: est=%d\n", nRowEst));
123546 static int wherePathSolver(WhereInfo *pWInfo, LogEst nRowEst){
123576 WHERETRACE(0x002, ("---- begin solver. (nRowEst=%d)\n", nRowEst));
123583 if( pWInfo->pOrderBy==0 || nRowEst==0 ){
123664 pWInfo, nRowEst, nOrderBy, isOrdered
123837 && nRowEst
[all …]