Home
last modified time | relevance | path

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

/sqlite-3.40.0/test/
H A Dscanstatus.test107 nLoop 1 nVisit 1 nEst 1.0 zName x1
115 nLoop 1 nVisit 1 nEst 10.0 zName x1j
139 nLoop 1 nVisit 2 nEst 16384.0 zName x1j
152 nLoop 1 nVisit 2 nEst 16384.0 zName x2j
160 nLoop 1 nVisit 0 nEst 8.0 zName x2ij
168 nLoop 1 nVisit 0 nEst 8.0 zName x2ij
176 nLoop 1 nVisit 1 nEst 8.0 zName x2ij
196 nLoop 1 nVisit 1 nEst 10.0 zName a1a
198 nLoop 1 nVisit 1 nEst 10.0 zName a1bc
227 nLoop 1 nVisit 4 nEst 40.0 zName a1a
[all …]
/sqlite-3.40.0/src/
H A Danalyze.c283 tRowcnt nEst; /* Estimated number of rows */ member
443 p->nEst = sqlite3_value_int64(argv[2]); in statInit()
459 p->nPSample = (tRowcnt)(p->nEst/(mxSample/3+1) + 1); in statInit()
864 p->nSkipAhead ? (u64)p->nEst : (u64)p->nRow); in statGet()
H A DvdbeInt.h397 LogEst nEst; /* Estimated output rows per loop */ member
H A Dvdbeaux.c1114 LogEst nEst, /* Estimated number of output rows */ in sqlite3VdbeScanStatus() argument
1125 pNew->nEst = nEst; in sqlite3VdbeScanStatus()
H A Dwhere.c2056 tRowcnt nEst; /* Number of rows for a single term */ in whereInScanEst() local
2062 nEst = nRow0; in whereInScanEst()
2063 rc = whereEqualScanEst(pParse, pBuilder, pList->a[i].pExpr, &nEst); in whereInScanEst()
2064 nRowEst += nEst; in whereInScanEst()
H A Dvdbeapi.c2129 LogEst x = pScan->nEst; in sqlite3_stmt_scanstatus()