diff options
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) { |