From: | Jeff Janes <jeff(dot)janes(at)gmail(dot)com> |
---|---|
To: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Subject: | 9.6beta subplan target list bug |
Date: | 2016-07-23 22:10:12 |
Message-ID: | CAMkU=1xfuPf2edAe4ZGXTmJpU7jxuKukKyvNtEXwu35B7dvejg@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Found a bug:
create table foo as select x, floor(random()*100)::int as y,
floor(random()*100)::int as z from generate_series(1,1000000) f(x);
explain select count(y) filter (where y<0.01) from foo where x < 10000;
ERROR: variable not found in subplan target list
STATEMENT: select count(y) filter (where y<0.01) from foo where x < 10000;
Bisects to:
commit 59a3795c2589a0e6dfe4d9a886de9423b3f8b057
Author: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Date: Sun Jun 26 12:08:12 2016 -0400
Simplify planner's final setup of Aggrefs for partial aggregation.
Cheers,
Jeff
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2016-07-24 00:17:32 | Re: 9.6beta subplan target list bug |
Previous Message | Jyoti Sharma | 2016-07-23 18:20:01 | Problem in PostgresSQL Configuration with YII 1 & Wordpress |