mirror of
https://github.com/postgres/postgres.git
synced 2025-11-06 07:49:08 +03:00
Support ordered-set (WITHIN GROUP) aggregates.
This patch introduces generic support for ordered-set and hypothetical-set aggregate functions, as well as implementations of the instances defined in SQL:2008 (percentile_cont(), percentile_disc(), rank(), dense_rank(), percent_rank(), cume_dist()). We also added mode() though it is not in the spec, as well as versions of percentile_cont() and percentile_disc() that can compute multiple percentile values in one pass over the data. Unlike the original submission, this patch puts full control of the sorting process in the hands of the aggregate's support functions. To allow the support functions to find out how they're supposed to sort, a new API function AggGetAggref() is added to nodeAgg.c. This allows retrieval of the aggregate call's Aggref node, which may have other uses beyond the immediate need. There is also support for ordered-set aggregates to install cleanup callback functions, so that they can be sure that infrastructure such as tuplesort objects gets cleaned up. In passing, make some fixes in the recently-added support for variadic aggregates, and make some editorial adjustments in the recent FILTER additions for aggregates. Also, simplify use of IsBinaryCoercible() by allowing it to succeed whenever the target type is ANY or ANYELEMENT. It was inconsistent that it dealt with other polymorphic target types but not these. Atri Sharma and Andrew Gierth; reviewed by Pavel Stehule and Vik Fearing, and rather heavily editorialized upon by Tom Lane
This commit is contained in:
@@ -281,7 +281,8 @@ typedef struct CollateClause
|
||||
/*
|
||||
* FuncCall - a function or aggregate invocation
|
||||
*
|
||||
* agg_order (if not NIL) indicates we saw 'foo(... ORDER BY ...)'.
|
||||
* agg_order (if not NIL) indicates we saw 'foo(... ORDER BY ...)', or if
|
||||
* agg_within_group is true, it was 'foo(...) WITHIN GROUP (ORDER BY ...)'.
|
||||
* agg_star indicates we saw a 'foo(*)' construct, while agg_distinct
|
||||
* indicates we saw 'foo(DISTINCT ...)'. In any of these cases, the
|
||||
* construct *must* be an aggregate call. Otherwise, it might be either an
|
||||
@@ -298,6 +299,7 @@ typedef struct FuncCall
|
||||
List *args; /* the arguments (list of exprs) */
|
||||
List *agg_order; /* ORDER BY (list of SortBy) */
|
||||
Node *agg_filter; /* FILTER clause, if any */
|
||||
bool agg_within_group; /* ORDER BY appeared in WITHIN GROUP */
|
||||
bool agg_star; /* argument was really '*' */
|
||||
bool agg_distinct; /* arguments were labeled DISTINCT */
|
||||
bool func_variadic; /* last argument was labeled VARIADIC */
|
||||
|
||||
Reference in New Issue
Block a user