Re: Window-functions patch handling of aggregates - Mailing list pgsql-hackers

From Gregory Stark
Subject Re: Window-functions patch handling of aggregates
Date
Msg-id 87y6y6ryrx.fsf@oxford.xeocode.com
Whole thread Raw
In response to Window-functions patch handling of aggregates  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Window-functions patch handling of aggregates
List pgsql-hackers
Tom Lane <tgl@sss.pgh.pa.us> writes:

> The window functions patch is laboring under the delusion that it can
> call an aggregate's final function and then go back to invoking the
> transfn some more on the same data.  This is merest fantasy :-(
>
> regression=# select array_agg(q1) over(order by q1) from int8_tbl;
> server closed the connection unexpectedly
>         This probably means the server terminated abnormally
>         before or while processing the request.
> The connection to the server was lost. Attempting reset: Failed.
>
> Unless we want to move the goalposts on what an aggregate is allowed
> to do internally, we're going to have to change this to re-aggregate
> repeatedly.  Neither prospect is appetizing in the least.

Does it currently copy the state datum before calling the final function?
Would that help?

It does seem like the abstract interface we have for aggregate functions is a
strength and we should leverage that. The burden of supporting more complex
cases should be borne by the users that are bending the rules.

--  Gregory Stark EnterpriseDB          http://www.enterprisedb.com Ask me about EnterpriseDB's PostGIS support!


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Window-functions patch handling of aggregates
Next
From: Robert Treat
Date:
Subject: Re: Hot standby and b-tree killed items