Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c18707 tRowcnt *aiRowEst; /* Non-logarithmic stat1 data for this index */ member
119334 tRowcnt *aiRowEst = 0;
119340 if( pIndex->aiRowEst==0 ){
119341 pIndex->aiRowEst = (tRowcnt*)sqlite3MallocZero(sizeof(tRowcnt) * nCol);
119342 if( pIndex->aiRowEst==0 ) sqlite3OomFault(pInfo->db);
119344 aiRowEst = pIndex->aiRowEst;
119347 decodeIntArray((char*)z, nCol, aiRowEst, pIndex->aiRowLogEst, pIndex);
119421 if( !pIdx->aiRowEst || iCol>=pIdx->nKeyCol || pIdx->aiRowEst[iCol+1]==0 ){
119426 nRow = pIdx->aiRowEst[0];
119427 nDist100 = ((i64)100 * pIdx->aiRowEst[0]) / pIdx->aiRowEst[iCol+1];
[all …]