Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c19180 tRowcnt *aiRowEst; /* Non-logarithmic stat1 data for this index */ member
121719 tRowcnt *aiRowEst = 0;
121725 if( pIndex->aiRowEst==0 ){
121726 pIndex->aiRowEst = (tRowcnt*)sqlite3MallocZero(sizeof(tRowcnt) * nCol);
121727 if( pIndex->aiRowEst==0 ) sqlite3OomFault(pInfo->db);
121729 aiRowEst = pIndex->aiRowEst;
121732 decodeIntArray((char*)z, nCol, aiRowEst, pIndex->aiRowLogEst, pIndex);
121806 if( !pIdx->aiRowEst || iCol>=pIdx->nKeyCol || pIdx->aiRowEst[iCol+1]==0 ){
121811 nRow = pIdx->aiRowEst[0];
121812 nDist100 = ((i64)100 * pIdx->aiRowEst[0]) / pIdx->aiRowEst[iCol+1];
[all …]