public inbox for [email protected]
help / color / mirror / Atom feedFrom: David G. Johnston <[email protected]>
To: Олег Самойлов <[email protected]>
Cc: [email protected] <[email protected]>
Subject: Re: How to return seto records from seof record function?
Date: Tue, 25 Feb 2025 07:29:52 -0700
Message-ID: <CAKFQuwY4BvZWfy=zrDYz4RtsTXUsaMb_ciVdyLnN20T8Kb5+bQ@mail.gmail.com> (raw)
In-Reply-To: <[email protected]>
References: <[email protected]>
On Tuesday, February 25, 2025, Олег Самойлов <[email protected]> wrote:
> Postgresql 17.2
>
> How to return seto records from seof record function? I tried
> pg_background extension:
>
>
> *CREATE* *OR* *REPLACE* *FUNCTION* public.autonomous (p_script *text*)
>
> *RETURNS* *SETOF* record
>
> *LANGUAGE* plpgsql
>
> *VOLATILE* *STRICT* *PARALLEL* UNSAFE
>
> *AS* *$autonomous$*
>
> *DECLARE*
>
> l_id *integer*;
>
> *BEGIN*
>
> l_id := pg_background_launch(p_script);
>
> *RETURN* QUERY *SELECT* * *FROM* pg_background_result(l_id) *AS* (r record
> );
>
> *END*;
>
> *$autonomous$*;
>
>
>
> *SELECT** * **FROM* *autonomous**(**'SELECT now()'**) **AS** (**a*
> *timestamptz**)**;*
>
>
> SQL Error [42804]: ERROR: structure of query does not match function
> result type
> Detail: Returned type record does not match expected type timestamp with
> time zone in column 1.
> Where: SQL statement "SELECT * FROM pg_background_result(l_id) AS (r
> record)"
>
PL/pgSQL function autonomous(text) line 6 at RETURN QUERY
>
Interesting…not sure this can work as you have no way to know what the
caller has specified as the return data type in order to write the inner
generic function call correctly. Maybe you can convert the record result
to jsonb and return that?
David J.
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected], [email protected], [email protected]
Subject: Re: How to return seto records from seof record function?
In-Reply-To: <CAKFQuwY4BvZWfy=zrDYz4RtsTXUsaMb_ciVdyLnN20T8Kb5+bQ@mail.gmail.com>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox