aboutsummaryrefslogtreecommitdiff
path: root/src/backend/nodes/outfuncs.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-11-06 22:31:24 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-11-06 22:31:24 +0000
commit2103b7baa26fe25cc2b5bee802028caeabb28113 (patch)
treef7516bbb3b18fca352fd638d567b2b0bf3a5a0bd /src/backend/nodes/outfuncs.c
parentfc9814d17e7701bac198c99f8ab9f67c8468797f (diff)
downloadpostgresql-2103b7baa26fe25cc2b5bee802028caeabb28113.tar.gz
postgresql-2103b7baa26fe25cc2b5bee802028caeabb28113.zip
Phase 2 of hashed-aggregation project. nodeAgg.c now knows how to do
hashed aggregation, but there's not yet planner support for it.
Diffstat (limited to 'src/backend/nodes/outfuncs.c')
-rw-r--r--src/backend/nodes/outfuncs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c
index 2d6db222b29..b35763f23da 100644
--- a/src/backend/nodes/outfuncs.c
+++ b/src/backend/nodes/outfuncs.c
@@ -5,7 +5,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.177 2002/11/06 00:00:44 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.178 2002/11/06 22:31:24 tgl Exp $
*
* NOTES
* Every (plan) node in POSTGRES has an associated "out" routine which
@@ -597,8 +597,8 @@ _outAgg(StringInfo str, Agg *node)
{
appendStringInfo(str, " AGG ");
_outPlanInfo(str, (Plan *) node);
- appendStringInfo(str, " :aggstrategy %d :numCols %d ",
- (int) node->aggstrategy, node->numCols);
+ appendStringInfo(str, " :aggstrategy %d :numCols %d :numGroups %ld ",
+ (int) node->aggstrategy, node->numCols, node->numGroups);
}
static void