Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Danalyze.c1578 pTable->nRowLogEst = pIndex->aiRowLogEst[0];
1587 decodeIntArray((char*)z, 1, 0, &pTable->nRowLogEst, &fakeIdx);
H A Dbuild.c1317 pTable->nRowLogEst = sqlite3LogEst(SQLITE_DEFAULT_ROWEST); in sqlite3StartTable()
1319 pTable->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); in sqlite3StartTable()
4534 x = pIdx->pTable->nRowLogEst; in sqlite3DefaultRowEst()
4537 pIdx->pTable->nRowLogEst = x = 99; in sqlite3DefaultRowEst()
H A Dpragma.c1308 pTab->nRowLogEst, in sqlite3Pragma()
2358 szThreshold = pTab->nRowLogEst + 46; assert( sqlite3LogEst(25)==46 ); in sqlite3Pragma()
H A Dwhere.c1096 sz = sqlite3LogEstToInt(pTab->nRowLogEst); in sqlite3ConstructBloomFilter()
3422 aiRowEstPk[0] = pTab->nRowLogEst; in whereLoopAddBtree()
3432 rSize = pTab->nRowLogEst; in whereLoopAddBtree()
5445 if( nSearch > pTab->nRowLogEst in whereCheckIfBloomFilterIsUseful()
5455 (double)sqlite3LogEstToInt(pTab->nRowLogEst))); in whereCheckIfBloomFilterIsUseful()
H A Dselect.c2353 pTab->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); in sqlite3ResultSetOfSelect()
5516 pTab->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); in resolveFromTermToCte()
5663 pTab->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); in sqlite3ExpandSubquery()
7046 pItem->pTab->nRowLogEst = pSub->nSelectRow; in sqlite3Select()
7098 pItem->pTab->nRowLogEst = pSub->nSelectRow; in sqlite3Select()
H A DsqliteInt.h2286 LogEst nRowLogEst; /* Estimated rows in table - from sqlite_stat1 table */ member