From: | PG Bug reporting form <noreply(at)postgresql(dot)org> |
---|---|
To: | pgsql-bugs(at)lists(dot)postgresql(dot)org |
Cc: | makhmutov(at)gmail(dot)com |
Subject: | BUG #17709: Regression in PG15 with window functions - "WindowFunc not found in subplan target lists" |
Date: | 2022-12-09 08:46:02 |
Message-ID: | 17709-4f557160e3e8ee9a@postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
The following bug has been logged on the website:
Bug reference: 17709
Logged by: Alexey Makhmutov
Email address: makhmutov(at)gmail(dot)com
PostgreSQL version: 15.1
Operating system: Ubuntu 20.04
Description:
Following query works fine on PG14, but produce error "WindowFunc not found
in subplan target lists" on PG15:
select 1
from
(
select count(case t1.a when 1 then 1 else null end) over (partition by
t2.b) c
from (select 1 a) t1, (select 1 b) t2
) t
where t.c = 1
On PG14 this query produce expected result (1), but on PG15.1 it produces
following error: "ERROR: WindowFunc not found in subplan target lists"
As of 8 December 2022, this problem could be reproduced on latest
REL_15_STABLE and HEAD (16dev) builds.
This seems to be result of functionality
https://github.com/postgres/postgres/commit/9d9c02ccd1aea8e9131d8f4edb21bf1687e40782
introduced in PG15.
From | Date | Subject | |
---|---|---|---|
Next Message | Richard Guo | 2022-12-09 11:00:19 | Re: BUG #17709: Regression in PG15 with window functions - "WindowFunc not found in subplan target lists" |
Previous Message | PG Bug reporting form | 2022-12-09 05:33:32 | BUG #17708: 12.4 |