Lines Matching refs:aiRowEst
19180 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];
122100 sqlite3_free(pIdx->aiRowEst);
122101 pIdx->aiRowEst = 0;
123547 sqlite3_free(p->aiRowEst);