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

Поиск
Список
Период
Сортировка
От David Rowley
Тема Re: BUG #17709: Regression in PG15 with window functions - "WindowFunc not found in subplan target lists"
Дата
Msg-id CAApHDvqmsWC55anRE8HZMJ95qJDEDY3zZsjup07N-5OShCK2mA@mail.gmail.com
обсуждение исходный текст
Ответ на Re: BUG #17709: Regression in PG15 with window functions - "WindowFunc not found in subplan target lists"  (Richard Guo <guofenglinux@gmail.com>)
Список pgsql-bugs
On Sat, 10 Dec 2022 at 03:01, Richard Guo <guofenglinux@gmail.com> wrote:
>
>
> On Fri, Dec 9, 2022 at 7:53 PM David Rowley <dgrowleyml@gmail.com> wrote:
>>
>> The additional thing that seems to cause the reported error is that
>> once the subquery is pulled up, the run condition also needs a round
>> of constant folding done. See subquery_planner() around line 827.  The
>> problem is that the target list's WindowFunc ends up with count(1)
>> over .., but the run condition's one is left as count(case 1 when 1
>> then 1 else null end), which preprocess_expression() will fold into
>> the same as what's in the target list.
>
>
> Yes exactly. That's what we also have to do.  I was debugging with a
> simplified version of the query with the WindowFunc as count(t1.a) over
> (...) and did not realize constant folding is also needed for the
> runCondition.

I made a few small minor adjustments and pushed the patch.

Thanks for the report Alexey and to Richard for looking into this.

David



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #17710: Slow queries (100% CPU) after auto-vacuum
Следующее
От: PG Bug reporting form
Дата:
Сообщение: BUG #17711: Login failed