| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | Andrew Gierth <andrew(at)tao11(dot)riddles(dot)org(dot)uk> |
| Cc: | Heikki Linnakangas <hlinnaka(at)iki(dot)fi>, Pg Bugs <pgsql-bugs(at)postgresql(dot)org> |
| Subject: | Re: Improper const-evaluation of HAVING with grouping sets and subquery pullup |
| Date: | 2017-10-16 15:15:18 |
| Message-ID: | 2431.1508166918@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-bugs |
Andrew Gierth <andrew(at)tao11(dot)riddles(dot)org(dot)uk> writes:
> "Tom" == Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> writes:
> Tom> Uh ... but I thought the point here is that the outputs aren't
> Tom> really constant in the presence of grouping sets.
> select x, y, sum(z) from (select 1 as x, 2 as y, 3 as z) s
> group by grouping sets (x,y);
> x and y aren't constants, but z is.
OK, but that just means we should put PHV wrapping around only the
grouping-set columns.
BTW, also need to think about GS expressions, eg
select x+y, sum(z) from (select 1 as x, 2 as y, 3 as z) s
group by grouping sets (x+y);
Not real sure what needs to happen here.
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Eduardo Pérez Ureta | 2017-10-16 15:24:45 | Re: BUG #14853: Parameter type is required even when the query does not need to know the type |
| Previous Message | Andrew Gierth | 2017-10-16 15:11:24 | Re: Improper const-evaluation of HAVING with grouping sets and subquery pullup |