Home
last modified time | relevance | path

Searched refs:nLoop (Results 1 – 5 of 5) 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 Dwhere.c4426 if( iLoop<nLoop ){ in wherePathSatisfiesOrderBy()
4801 nLoop = pWInfo->nLevel; in wherePathSolver()
4805 mxChoice = (nLoop<=1) ? 1 : (nLoop==2 ? 5 : 10); in wherePathSolver()
4866 for(iLoop=0; iLoop<nLoop; iLoop++){ in wherePathSolver()
5090 assert( pWInfo->nLevel==nLoop ); in wherePathSolver()
5092 for(iLoop=0; iLoop<nLoop; iLoop++){ in wherePathSolver()
5105 WHERE_DISTINCTBY, nLoop-1, pFrom->aLoop[nLoop-1], &notUsed); in wherePathSolver()
5121 if( nLoop>0 ){ in wherePathSolver()
5128 WHERE_ORDERBY_LIMIT, nLoop-1, pFrom->aLoop[nLoop-1], &m); in wherePathSolver()
5137 }else if( nLoop in wherePathSolver()
[all …]
H A Dwherecode.c350 int nLoop = 0; in disableTerm() local
356 if( nLoop && (pTerm->wtFlags & TERM_LIKE)!=0 ){ in disableTerm()
372 nLoop++; in disableTerm()
H A Dtest1.c2204 sqlite3_int64 nLoop; in test_stmt_scanstatus() local
2216 res = sqlite3_stmt_scanstatus(pStmt, idx, SQLITE_SCANSTAT_NLOOP, (void*)&nLoop); in test_stmt_scanstatus()
2220 Tcl_ListObjAppendElement(0, pRet, Tcl_NewWideIntObj(nLoop)); in test_stmt_scanstatus()
H A Dshell.c.in2986 sqlite3_int64 nLoop, nVisit;
2990 if( sqlite3_stmt_scanstatus(p, i, SQLITE_SCANSTAT_NLOOP, (void*)&nLoop) ){
2997 rEstLoop = (double)nLoop;
3007 " nLoop=%-8lld nRow=%-8lld estRow=%-8lld estRow/Loop=%-8g\n",
3008 nLoop, nVisit, (sqlite3_int64)(rEstLoop+0.5), rEst