Searched refs:sqlite3_vtab_distinct (Results 1 – 8 of 8) sorted by relevance
12 # This file implements tests for sqlite3_vtab_distinct() interface.26 SELECT ix FROM qpvtab WHERE vn='sqlite3_vtab_distinct';29 SELECT DISTINCT ix FROM qpvtab WHERE vn='sqlite3_vtab_distinct';33 WHERE +vn IN ('sqlite3_vtab_distinct','nOrderBy');34 } {nOrderBy 2 sqlite3_vtab_distinct 2}38 HAVING vn='sqlite3_vtab_distinct';39 } {sqlite3_vtab_distinct 1}
659 zLogTab, iBI, sqlite3_vtab_distinct(pInfo) in sqlite3BestIndexLog()848 if( sqlite3_vtab_distinct(pInfo)>=1 ){ in vt02BestIndex()855 if( sqlite3_vtab_distinct(pInfo)==2 ){ in vt02BestIndex()
401 sqlite3_vtab_distinct(pIdxInfo)); in qpvtabBestIndex()
492 sqlite3_vtab_distinct,
551 int bDistinct = sqlite3_vtab_distinct(pIdxInfo); in testBestIndexObj()
676 #define sqlite3_vtab_distinct sqlite3_api->vtab_distinct macro
9631 ** ^The sqlite3_vtab_distinct() interface returns an integer between 0 and9632 ** 3. The integer returned by sqlite3_vtab_distinct()9639 ** ^If the sqlite3_vtab_distinct() interface returns 0, that means9645 ** the return value from sqlite3_vtab_distinct().9647 ** ^(If the sqlite3_vtab_distinct() interface returns 1, that means9653 ** ^(If the sqlite3_vtab_distinct() interface returns 2, that means9665 ** ^(If the sqlite3_vtab_distinct() interface returns 3, that means9687 ** sqlite3_vtab_distinct() interface is merely an optimization. ^Careful9688 ** use of the sqlite3_vtab_distinct() interface and the "orderByConsumed"9694 int sqlite3_vtab_distinct(sqlite3_index_info*);
3937 int sqlite3_vtab_distinct(sqlite3_index_info *pIdxInfo){ in sqlite3_vtab_distinct() function