Lines Matching refs:nDLt
10408 tRowcnt nDLt; /* Est. number of distinct keys less than this sample */
79282 ** CREATE TABLE sqlite_stat3(tbl, idx, nEq, nLt, nDLt, sample);
79357 ** column is less than the sample. The nDLt column is the approximate
79362 ** multiple integers values in the nDLt column of sqlite_stat3. The first
79367 ** three columns. And so forth. With that extension, the nDLt field is
79407 { "sqlite_stat3", "tbl,idx,neq,nlt,ndlt,sample" },
79488 tRowcnt nDLt; /* sqlite_stat3.nDLt */
79547 ** Implementation of the stat3_push(nEq,nLt,nDLt,rowid,P) SQL function. The
79562 tRowcnt nDLt = sqlite3_value_int64(argv[2]);
79595 pSample->nDLt = nDLt;
79647 ** argc==5 result: nDLt
79663 default: sqlite3_result_int64(context, p->a[n].nDLt); break;
80233 "SELECT idx,neq,nlt,ndlt,sample FROM %Q.sqlite_stat3", zDb);
80261 pSample->nDLt = (tRowcnt)sqlite3_column_int64(pStmt, 3);
80263 if( pSample->nDLt>0 ){
80265 pIdx->avgEq = (pSample->nLt - sumEq)/pSample->nDLt;