aboutsummaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2012-11-02 18:24:57 +0000
committerdrh <drh@noemail.net>2012-11-02 18:24:57 +0000
commite8abb4cad359b6119c9e49cf4e46a732123b232e (patch)
tree96c2f26699c127a300fb5c9c490892c55875392f /src/expr.c
parent6e24ff83d8c80c4ef9772b3b22445976e3037194 (diff)
downloadsqlite-e8abb4cad359b6119c9e49cf4e46a732123b232e.tar.gz
sqlite-e8abb4cad359b6119c9e49cf4e46a732123b232e.zip
Fix an out-of-date comment. No changes to code.
FossilOrigin-Name: 10cc12b16b2f1ae4e6b3a84cef5a44564d282e9c
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/expr.c b/src/expr.c
index 3eee3c6d6..d504be139 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -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().