diff options
Diffstat (limited to 'src/include/nodes/relation.h')
-rw-r--r-- | src/include/nodes/relation.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h index 9470df626cc..b5f96839755 100644 --- a/src/include/nodes/relation.h +++ b/src/include/nodes/relation.h @@ -1347,12 +1347,10 @@ typedef struct AggPath Path path; Path *subpath; /* path representing input source */ AggStrategy aggstrategy; /* basic strategy, see nodes.h */ + AggSplit aggsplit; /* agg-splitting mode, see nodes.h */ double numGroups; /* estimated number of groups in input */ List *groupClause; /* a list of SortGroupClause's */ List *qual; /* quals (HAVING quals), if any */ - bool combineStates; /* input is partially aggregated agg states */ - bool finalizeAggs; /* should the executor call the finalfn? */ - bool serialStates; /* should agg states be (de)serialized? */ } AggPath; /* |