diff options
author | Vadim B. Mikheev | 1998-02-18 12:41:36 +0000 |
---|---|---|
committer | Vadim B. Mikheev | 1998-02-18 12:41:36 +0000 |
commit | 9d557f83d48868013426b6d418a66c6f9cc9f7d2 (patch) | |
tree | d8beaf4ffebd68b61e236e692518f7caf97808ca | |
parent | b1b246ab40faaba0cea515b2254bb12aa672417a (diff) |
GroupState changed.
-rw-r--r-- | src/include/nodes/execnodes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index bc40d3e96a3..f3e60bcc091 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: execnodes.h,v 1.13 1998/02/13 03:45:22 vadim Exp $ + * $Id: execnodes.h,v 1.14 1998/02/18 12:41:36 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -586,10 +586,10 @@ typedef struct AggState */ typedef struct GroupState { - CommonScanState csstate; /* its first field is NodeTag */ - bool grp_useLastTuple; /* last tuple not processed yet */ + CommonScanState csstate; /* its first field is NodeTag */ + bool grp_useFirstTuple; /* first tuple not processed yet */ bool grp_done; - TupleTableSlot *grp_lastSlot; + HeapTuple grp_firstTuple; } GroupState; /* ---------------- |