Lines Matching defs:estimatedRows
7502 ** ^The estimatedRows value is an estimate of the number of rows that
7520 ** IMPORTANT: The estimatedRows field was added to the sqlite3_index_info
7524 ** to read or write the estimatedRows field are undefined (but are likely
7525 ** to include crashing the application). The estimatedRows field should
7558 sqlite3_int64 estimatedRows; /* Estimated number of rows returned */
102910 pIdxInfo->estimatedRows = 100;
136949 pIdxInfo->estimatedRows = 2147483647;
136957 pIdxInfo->estimatedRows = 20;
157289 sqlite3DebugPrintf(" estimatedRows=%lld\n", p->estimatedRows);
160268 pIdxInfo->estimatedRows = 25;
160378 pNew->nOut = sqlite3LogEst(pIdxInfo->estimatedRows);
181219 ** Set the pIdxInfo->estimatedRows variable to nRow. Unless this
181221 ** support estimatedRows. In that case this function is a no-op.
181226 pIdxInfo->estimatedRows = nRow;
202976 pIdxInfo->estimatedRows = 1;
203012 pIdxInfo->estimatedRows = nRow;
206851 pIdxInfo->estimatedRows = 1;
206861 pIdxInfo->estimatedRows = 10;
206867 pIdxInfo->estimatedRows = 100000;
215229 pIdxInfo->estimatedRows = 1;
244537 pIdxInfo->estimatedRows = 500;