BUG #17709: Regression in PG15 with window functions - "WindowFunc not found in subplan target lists"

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #17709: Regression in PG15 with window functions - "WindowFunc not found in subplan target lists"
Дата
Msg-id 17709-4f557160e3e8ee9a@postgresql.org
обсуждение исходный текст
Ответы Re: BUG #17709: Regression in PG15 with window functions - "WindowFunc not found in subplan target lists"
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      17709
Logged by:          Alexey Makhmutov
Email address:      makhmutov@gmail.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.


В списке pgsql-bugs по дате отправления:

Предыдущее
От: PG Bug reporting form
Дата:
Сообщение: BUG #17708: 12.4
Следующее
От: Richard Guo
Дата:
Сообщение: Re: BUG #17709: Regression in PG15 with window functions - "WindowFunc not found in subplan target lists"