Re: BUG #18950: pgsql function that worked in Postgresql 16 does not return in Postgresql 17

From: Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>
To: lowell(dot)hought(at)gmail(dot)com, pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: BUG #18950: pgsql function that worked in Postgresql 16 does not return in Postgresql 17
Date: 2025-06-08 00:27:31
Message-ID: e9eb5136fb60188fc61c110e9706709fc13638e0.camel@cybertec.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On Sat, 2025-06-07 at 16:08 +0000, PG Bug reporting form wrote:
> PostgreSQL version: 17.5
> Operating system: Red Hat Enterprise Linux release 8.10 (Ootpa)
>
> A pgsql function that returns Table is relatively simple. It accepts two
> arguments; a date and an interval. It uses these to arguments in a query
> that returns a result set. This function worked in Postgresql 16.1 and
> Postgresql 16.9. However, it does not work in versions 17.0 nor in 17.5
>
> [function definition]
>
> This is the first time I have ever encountered a bug and so I have no
> experience with reporting it.

Your function essentially is running a query.
If you run that query outside of the function, does it finish on time?
If not, you have a simpler problem to tackle.

It need not necessarily be a bug if some queries perform worse in a later
PostgreSQL version. There are too many factors involved in the execution
of a complicated query. To give help, we'd need at least the EXPLAIN
output from the query and the EXPLAIN (ANALYZE, BUFFERS) output from the
query on the old version.

Yours,
Laurenz Albe

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Lowell Hought 2025-06-08 01:40:32 Re: BUG #18950: pgsql function that worked in Postgresql 16 does not return in Postgresql 17
Previous Message Dilip Kumar 2025-06-07 16:49:53 Re: BUG #18947: TRAP: failed Assert("len_to_wrt >= 0") in pg_stat_statements