Home
last modified time | relevance | path

Searched refs:idxFlags (Results 1 – 9 of 9) sorted by relevance

/sqlite-3.40.0/ext/fts5/
H A Dfts5_main.c464 pIdxInfo->idxFlags |= SQLITE_INDEX_SCAN_UNIQUE; in fts5SetUniqueFlag()
551 int idxFlags = 0; /* Parameter passed through to xFilter() */ in fts5BestIndexMethod() local
654 idxFlags |= FTS5_BI_ORDER_RANK; in fts5BestIndexMethod()
656 idxFlags |= FTS5_BI_ORDER_ROWID; in fts5BestIndexMethod()
658 if( BitFlagTest(idxFlags, FTS5_BI_ORDER_RANK|FTS5_BI_ORDER_ROWID) ){ in fts5BestIndexMethod()
661 idxFlags |= FTS5_BI_ORDER_DESC; in fts5BestIndexMethod()
678 pInfo->idxNum = idxFlags; in fts5BestIndexMethod()
/sqlite-3.40.0/ext/misc/
H A Dqpvtab.c402 sqlite3_str_appendf(pStr, "idxFlags,%d,,,,\n", pIdxInfo->idxFlags); in qpvtabBestIndex()
H A Dunionvtab.c1297 pIdxInfo->idxFlags = SQLITE_INDEX_SCAN_UNIQUE; in unionBestIndex()
/sqlite-3.40.0/src/
H A Ddbpage.c143 pIdxInfo->idxFlags = SQLITE_INDEX_SCAN_UNIQUE; in dbpageBestIndex()
H A Dwhere.c3719 pIdxInfo->idxFlags = 0; in whereLoopAddVirtualOne()
3787 pIdxInfo->idxFlags &= ~SQLITE_INDEX_SCAN_UNIQUE; in whereLoopAddVirtualOne()
3832 if( pIdxInfo->idxFlags & SQLITE_INDEX_SCAN_UNIQUE ){ in whereLoopAddVirtualOne()
H A Dsqlite.h.in7144 ** The xBestIndex method may optionally populate the idxFlags field with a
7166 ** value greater than or equal to 3008002. Similarly, the idxFlags field
7199 int idxFlags; /* Mask of SQLITE_INDEX_SCAN_* flags */ member
7208 ** [sqlite3_index_info].idxFlags field to some combination of
/sqlite-3.40.0/ext/rtree/
H A Dgeopoly.c1502 pIdxInfo->idxFlags = SQLITE_INDEX_SCAN_UNIQUE; in geopolyBestIndex()
H A Drtree.c2031 pIdxInfo->idxFlags = SQLITE_INDEX_SCAN_UNIQUE; in rtreeBestIndex()
/sqlite-3.40.0/ext/fts3/
H A Dfts3.c1598 pIdxInfo->idxFlags |= SQLITE_INDEX_SCAN_UNIQUE; in fts3SetUniqueFlag()