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

Fix an out-of-date comment. No changes to code.

FossilOrigin-Name: 10cc12b16b2f1ae4e6b3a84cef5a44564d282e9c
This commit is contained in:
drh
2012-11-02 18:24:57 +00:00
parent 6e24ff83d8
commit e8abb4cad3
3 changed files with 11 additions and 10 deletions

View File

@@ -4043,9 +4043,10 @@ static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){
}
/*
** Analyze the given expression looking for aggregate functions and
** for variables that need to be added to the pParse->aAgg[] array.
** Make additional entries to the pParse->aAgg[] array as necessary.
** Analyze the pExpr expression looking for aggregate functions and
** for variables that need to be added to AggInfo object that pNC->pAggInfo
** points to. Additional entries are made on the AggInfo object as
** necessary.
**
** This routine should only be called after the expression has been
** analyzed by sqlite3ResolveExprNames().