Re: idea - new aggregates median, listagg

From: Scott Bailey <artacus(at)comcast(dot)net>
To:
Cc: PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: idea - new aggregates median, listagg
Date: 2009-12-16 16:10:57
Message-ID: 4B290691.8070508@comcast.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Thom Brown wrote:
> 2009/12/15 Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com
> <mailto:pavel(dot)stehule(at)gmail(dot)com>>
>
> Hello
>
> I am looking on new feature - ORDER clause in aggregate, and I thing,
> so we are able to effectively implement some non standard, but well
> known aggregates.
>
> a) function median - it is relative frequent request - with usually
> slow implementation
>
> b) function listagg (it is analogy of group_concat from MySQL) - it
> should simplify report generating and some other
>
> What is your opinion? Do you like to see these functions in core?
>
>
>
> I'm probably missing the point here, but when I originally saw MySQL's
> group_concat function, I found it odd that it featured ordering
> functionality. Shouldn't the order by determined by the query itself?
> Otherwise it's almost as if its separating the relationship between the
> result column and the resultset.

For xmlagg in particular, it is quite useful to be able order the
results. And sorting the query doesn't work for ordering the agg unless
you do it in a subquery. Oracle has this functionality and it is quite
handy. It would be nice to see listagg with the option to order as well.

Scott

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2009-12-16 16:21:59 Re: Patch: Remove gcc dependency in definition of inline functions
Previous Message Alvaro Herrera 2009-12-16 16:10:47 Re: Patch: Remove gcc dependency in definition of inline functions