Lines Matching full:nlt
120122 ** CREATE TABLE sqlite_stat3(tbl, idx, nEq, nLt, nDLt, sample);
120123 ** CREATE TABLE sqlite_stat4(tbl, idx, nEq, nLt, nDLt, sample);
120216 ** And so forth. nLt is another list of integers that show the approximate
120218 ** integer in nLt contains the number of entries in the index where the
120220 ** The K-th integer in the nLt entry is the number of index entries
120222 ** sample. The nDLt column is like nLt except that it contains the
120238 ** sqlite_stat4.sample. The nEq, nLt, and nDLt entries of sqlite_stat3
120279 { "sqlite_stat4", "tbl,idx,neq,nlt,ndlt,sample" },
120371 tRowcnt *anLt; /* sqlite_stat4.nLt */
120848 tRowcnt nLt;
120857 nLt = p->current.anLt[p->nCol-1];
120859 if( (nLt/p->nPSample)!=(nLt+1)/p->nPSample ){
120896 #define STAT_GET_NLT 3 /* "nlt" column of stat[34] entry */
121863 ** zSql2: SELECT idx,neq,nlt,ndlt,sample FROM %Q.sqlite_stat4
122014 "SELECT idx,neq,nlt,ndlt,sample FROM %Q.sqlite_stat4",