Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dwhere.c4758 }else if( (pWInfo->wctrlFlags & WHERE_WANT_DISTINCT) ){ in whereSortingCost()
5098 if( (pWInfo->wctrlFlags & WHERE_WANT_DISTINCT)!=0 in wherePathSolver()
5253 if( pWInfo->wctrlFlags & WHERE_WANT_DISTINCT ){ in whereShortCut()
5374 if( (pWInfo->wctrlFlags & WHERE_WANT_DISTINCT)==0 in whereOmitNoopJoin()
5735 if( (wctrlFlags & WHERE_WANT_DISTINCT)!=0 in sqlite3WhereBegin()
5800 if( wctrlFlags & WHERE_WANT_DISTINCT ){ in sqlite3WhereBegin()
5804 wctrlFlags &= ~WHERE_WANT_DISTINCT; in sqlite3WhereBegin()
5805 pWInfo->wctrlFlags &= ~WHERE_WANT_DISTINCT; in sqlite3WhereBegin()
H A Dselect.c7239 u16 wctrlFlags = (sDistinct.isTnct ? WHERE_WANT_DISTINCT : 0) in sqlite3Select()
7484 distFlag = pDistinct ? (WHERE_WANT_DISTINCT|WHERE_AGG_DISTINCT) : 0; in sqlite3Select()
7802 distFlag = pDistinct ? (WHERE_WANT_DISTINCT|WHERE_AGG_DISTINCT) : 0; in sqlite3Select()
H A DsqliteInt.h3207 #define WHERE_WANT_DISTINCT 0x0100 /* All output needs to be distinct */ macro