1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-18 10:21:03 +03:00

Rename WhereInfo.pResultSet to pDistinctSet to more accurately reflect what

it represents.

FossilOrigin-Name: 5317961411695e107e8cefdeaba62280429979ca
This commit is contained in:
drh
2016-04-14 13:35:26 +00:00
parent 8f2ce91462
commit f1b5ff73cb
4 changed files with 24 additions and 24 deletions

View File

@@ -408,7 +408,7 @@ struct WhereInfo {
Parse *pParse; /* Parsing and code generating context */
SrcList *pTabList; /* List of tables in the join */
ExprList *pOrderBy; /* The ORDER BY clause or NULL */
ExprList *pResultSet; /* Result set. DISTINCT operates on these */
ExprList *pDistinctSet; /* DISTINCT over all these values */
WhereLoop *pLoops; /* List of all WhereLoop objects */
Bitmask revMask; /* Mask of ORDER BY terms that need reversing */
LogEst nRowOut; /* Estimated number of output rows */