diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-06 22:31:24 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-06 22:31:24 +0000 |
commit | 2103b7baa26fe25cc2b5bee802028caeabb28113 (patch) | |
tree | f7516bbb3b18fca352fd638d567b2b0bf3a5a0bd /src/backend/executor/nodeGroup.c | |
parent | fc9814d17e7701bac198c99f8ab9f67c8468797f (diff) | |
download | postgresql-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/executor/nodeGroup.c')
-rw-r--r-- | src/backend/executor/nodeGroup.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/backend/executor/nodeGroup.c b/src/backend/executor/nodeGroup.c index 662c3d4798c..3ea0e44d286 100644 --- a/src/backend/executor/nodeGroup.c +++ b/src/backend/executor/nodeGroup.c @@ -15,7 +15,7 @@ * locate group boundaries. * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/nodeGroup.c,v 1.48 2002/11/06 00:00:43 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/nodeGroup.c,v 1.49 2002/11/06 22:31:23 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -151,9 +151,8 @@ ExecInitGroup(Group *node, EState *estate, Plan *parent) */ grpstate = makeNode(GroupState); node->grpstate = grpstate; - grpstate->grp_useFirstTuple = FALSE; - grpstate->grp_done = FALSE; grpstate->grp_firstTuple = NULL; + grpstate->grp_done = FALSE; /* * create expression context @@ -236,7 +235,6 @@ ExecReScanGroup(Group *node, ExprContext *exprCtxt, Plan *parent) { GroupState *grpstate = node->grpstate; - grpstate->grp_useFirstTuple = FALSE; grpstate->grp_done = FALSE; if (grpstate->grp_firstTuple != NULL) { |