From: | Dean Rasheed <dean(dot)a(dot)rasheed(at)gmail(dot)com> |
---|---|
To: | Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> |
Cc: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Hitoshi Harada <umi(dot)tanuki(at)gmail(dot)com>, Robert Haas <robertmhaas(at)gmail(dot)com>, Greg Stark <gsstark(at)mit(dot)edu>, David Fetter <david(at)fetter(dot)org>, PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: wip: functions median and percentile |
Date: | 2010-10-11 10:33:11 |
Message-ID: | AANLkTimiWJqhc+=Ysy-NeAgL136xKg3ZxgU=ZvFy3U-q@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers pgsql-rrreviewers |
On 11 October 2010 10:55, Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> wrote:
>> BTW, why has percentile been removed from this patch? As the more
>> general, and SQL standard function, that would seem to be the more
>> useful one to include. Upthread it was mentioned that there is already
>> an ntile window function, but actually that's a completely different
>> thing.
>
> The reason for removing was impossibility to specify so some parameter
> must by immutable - in this case p parameter should be immutable
> otherwise the result is undefined.
>
Could we not just make an arbitrary choice, like the last non-null
value, and then document that. I can't believe that this would ever be
an issue in practice.
I don't think there is any way to deduce the following from behaviour
from the documentation:
select string_agg(i::text, repeat(',',i)) from generate_series(1,10) as g(i);
string_agg
-------------------------------------------------------------------
1,,2,,,3,,,,4,,,,,5,,,,,,6,,,,,,,7,,,,,,,,8,,,,,,,,,9,,,,,,,,,,10
(1 row)
but I don't see it as a real problem for the aggregate.
Thoughts?
Regards,
Dean
From | Date | Subject | |
---|---|---|---|
Next Message | Robert Haas | 2010-10-11 10:33:12 | Re: wip: functions median and percentile |
Previous Message | Pierre C | 2010-10-11 10:09:02 | Re: Slow count(*) again... |
From | Date | Subject | |
---|---|---|---|
Next Message | Robert Haas | 2010-10-11 10:33:12 | Re: wip: functions median and percentile |
Previous Message | Pavel Stehule | 2010-10-11 09:55:16 | Re: wip: functions median and percentile |