Home
last modified time | relevance | path

Searched refs:EP_Distinct (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/src/
H A Dexpr.c1093 if( eDistinct==SF_Distinct ) ExprSetProperty(pNew, EP_Distinct); in sqlite3ExprFunction()
5650 if( (pA->flags & (EP_Distinct|EP_Commuted)) in sqlite3ExprCompare()
5651 != (pB->flags & (EP_Distinct|EP_Commuted)) ) return 2; in sqlite3ExprCompare()
6365 if( pExpr->flags & EP_Distinct ){ in analyzeAggregate()
H A Dwindow.c1316 if( (p->flags & EP_Distinct) && pWin->eFrmType!=TK_FILTER ){ in sqlite3WindowAttach()
H A DsqliteInt.h2897 #define EP_Distinct 0x000004 /* Aggregate function with DISTINCT keyword */ macro
H A Dselect.c5234 testcase( ExprHasProperty(pExpr, EP_Distinct) ); in isSimpleCount()
5236 if( ExprHasProperty(pExpr, EP_Distinct|EP_WinFunc) ) return 0; in isSimpleCount()