aboutsummaryrefslogtreecommitdiff
path: root/src/backend/nodes/copyfuncs.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/copyfuncs.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/copyfuncs.c')
-rw-r--r--src/backend/nodes/copyfuncs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c
index 0438e0ce609..447d5600643 100644
--- a/src/backend/nodes/copyfuncs.c
+++ b/src/backend/nodes/copyfuncs.c
@@ -15,7 +15,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.215 2002/11/06 00:00:43 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.216 2002/11/06 22:31:23 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -524,6 +524,7 @@ _copyAgg(Agg *from)
memcpy(newnode->grpColIdx, from->grpColIdx,
from->numCols * sizeof(AttrNumber));
}
+ newnode->numGroups = from->numGroups;
return newnode;
}