Searched refs:aiRowEst (Results 1 – 2 of 2) sorted by relevance
10126 unsigned *aiRowEst; /* Result of ANALYZE: Est. rows selected by each column */ member78154 pIndex->aiRowEst[i] = v;81790 pIndex->aiRowEst = (unsigned *)(&pIndex->aiColumn[nCol]);81791 pIndex->aSortOrder = (u8 *)(&pIndex->aiRowEst[nCol+1]);82068 unsigned *a = pIdx->aiRowEst;103087 nRowEst = p->aiRowEst[0]/(SQLITE_INDEX_SAMPLES*2);103090 nRowEst = (iUpper-iLower)*p->aiRowEst[0]/SQLITE_INDEX_SAMPLES;103166 nRowEst = (nSpan*2+nSingle)*p->aiRowEst[0]/(2*SQLITE_INDEX_SAMPLES)103167 + nNotFound*p->aiRowEst[1];103168 if( nRowEst > p->aiRowEst[0] ) nRowEst = p->aiRowEst[0];[all …]
11840 tRowcnt *aiRowEst; /* Non-logarithmic stat1 data for this index */ member90679 tRowcnt *aiRowEst = 0;90685 if( pIndex->aiRowEst==0 ){90686 pIndex->aiRowEst = (tRowcnt*)sqlite3MallocZero(sizeof(tRowcnt) * nCol);90687 if( pIndex->aiRowEst==0 ) pInfo->db->mallocFailed = 1;90689 aiRowEst = pIndex->aiRowEst;90692 decodeIntArray((char*)z, nCol, aiRowEst, pIndex->aiRowLogEst, pIndex);90759 if( !pIdx->aiRowEst || iCol>=pIdx->nKeyCol || pIdx->aiRowEst[iCol+1]==0 ){90764 nRow = pIdx->aiRowEst[0];90765 nDist100 = ((i64)100 * pIdx->aiRowEst[0]) / pIdx->aiRowEst[iCol+1];[all …]