Searched refs:pDistinct (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.c | 149916 DistinctCtx *pDistinct, /* If not NULL, info on how to process DISTINCT */ argument 149940 hasDistinct = pDistinct ? pDistinct->eTnctType : WHERE_DISTINCT_NOOP; 150066 int eType = pDistinct->eTnctType; 150067 int iTab = pDistinct->tabTnct; 150070 fixDistinctOpenEph(pParse, eType, iTab, pDistinct->addrTnct); 157238 ExprList *pDistinct = 0; local 157250 pDistinct = sqlite3ExprListDup(db, pGroupBy, 0); 157251 pDistinct = sqlite3ExprListAppend(pParse, pDistinct, pExpr); 157252 distFlag = pDistinct ? (WHERE_WANT_DISTINCT|WHERE_AGG_DISTINCT) : 0; 157291 pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, pGroupBy, pDistinct, [all …]
|