Home
last modified time | relevance | path

Searched refs:eDistinct (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/src/
H A Dwhere.c58 return pWInfo->eDistinct; in sqlite3WhereIsDistinct()
1186 int eDistinct = 0; in allocateIndexInfo() local
1272 eDistinct = 1; in allocateIndexInfo()
1296 pHidden->eDistinct = eDistinct; in allocateIndexInfo()
3939 assert( pHidden->eDistinct>=0 && pHidden->eDistinct<=3 ); in sqlite3_vtab_distinct()
3940 return pHidden->eDistinct; in sqlite3_vtab_distinct()
5100 && pWInfo->eDistinct==WHERE_DISTINCT_NOOP in wherePathSolver()
5254 pWInfo->eDistinct = WHERE_DISTINCT_UNIQUE; in whereShortCut()
5738 pWInfo->eDistinct = WHERE_DISTINCT_UNIQUE; in sqlite3WhereBegin()
5808 pWInfo->eDistinct = WHERE_DISTINCT_UNIQUE; in sqlite3WhereBegin()
[all …]
H A DwhereInt.h480 u8 eDistinct; /* One of the WHERE_DISTINCT_* values */ member
H A Dexpr.c1071 int eDistinct /* SF_Distinct or SF_ALL or 0 */ in sqlite3ExprFunction() argument
1093 if( eDistinct==SF_Distinct ) ExprSetProperty(pNew, EP_Distinct); in sqlite3ExprFunction()