Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c19841 tRowcnt *aiRowEst; /* Non-logarithmic stat1 data for this index */ member
125240 tRowcnt *aiRowEst = 0; local
125246 if( pIndex->aiRowEst==0 ){
125247 pIndex->aiRowEst = (tRowcnt*)sqlite3MallocZero(sizeof(tRowcnt) * nCol);
125248 if( pIndex->aiRowEst==0 ) sqlite3OomFault(pInfo->db);
125250 aiRowEst = pIndex->aiRowEst;
125253 decodeIntArray((char*)z, nCol, aiRowEst, pIndex->aiRowLogEst, pIndex);
125327 if( !pIdx->aiRowEst || iCol>=pIdx->nKeyCol || pIdx->aiRowEst[iCol+1]==0 ){
125332 nRow = pIdx->aiRowEst[0];
125333 nDist100 = ((i64)100 * pIdx->aiRowEst[0]) / pIdx->aiRowEst[iCol+1];
[all …]