Home | History | Annotate | Download | only in dist

Lines Matching refs:xBestIndex

5506   int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
5539 ** pass information into and receive the reply from the [xBestIndex]
5541 ** inputs to xBestIndex and are read-only. xBestIndex inserts its
5565 ** The [xBestIndex] method must fill aConstraintUsage[] with information
5593 int iTermOffset; /* Used internally - xBestIndex should ignore */
70733 ** P4 is either NULL or a string that was generated by the xBestIndex
103893 ** This information is used by the xBestIndex methods of
104770 ** many fields that are declared "const" to prevent xBestIndex from
104817 ** must represent a virtual table. This function invokes the xBestIndex()
104834 WHERETRACE(("xBestIndex for %s\n", pTab->zName));
104836 rc = pVtab->pModule->xBestIndex(pVtab, p);
104854 "table %s: xBestIndex returned an invalid plan", pTab->zName);
104865 ** The best index is computed by the xBestIndex method of the virtual
104868 ** xBestIndex.
104886 sqlite3_index_info **ppIdxInfo /* Index information passed to xBestIndex */
104919 ** xBestIndex.
118057 ** Implementation of the xBestIndex method for FTS3 tables. There
120127 /* xBestIndex */ fts3BestIndexMethod,
121988 ** xBestIndex - Analyze a WHERE and ORDER BY clause.
122303 fts3auxBestIndexMethod, /* xBestIndex */
131481 ** Rtree virtual table module xBestIndex method. There are three
133019 rtreeBestIndex, /* xBestIndex - Determine search strategy */