aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/execnodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r--src/include/nodes/execnodes.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h
index 07db76e47dc..9c790baaaa5 100644
--- a/src/include/nodes/execnodes.h
+++ b/src/include/nodes/execnodes.h
@@ -1816,10 +1816,8 @@ typedef struct AggState
int num_hashes;
AggStatePerHash perhash;
AggStatePerGroup *hash_pergroup; /* array of per-group pointers */
- /* support for evaluation of agg inputs */
- TupleTableSlot *evalslot; /* slot for agg inputs */
- ProjectionInfo *evalproj; /* projection machinery */
- TupleDesc evaldesc; /* descriptor of input tuples */
+ /* support for evaluation of agg input expressions: */
+ ProjectionInfo *combinedproj; /* projection machinery */
AggStatePerAgg curperagg; /* currently active aggregate, if any */
} AggState;