Re: PG 14.5 -- Impossible to restore dump due to interaction/order of views, functions, and generated columns

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: Nunya Business <nb3425586(at)gmail(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: PG 14.5 -- Impossible to restore dump due to interaction/order of views, functions, and generated columns
Date: 2022-12-06 15:51:51
Message-ID: 928ae54c-b9aa-3894-c63d-b91591982238@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs pgsql-general

On 12/5/22 11:49, Nunya Business wrote:
> Good afternoon,
>
> I've recently run into a weird issue that I'm trying to gather more data
> on before sending an official bug report on the off chance that it's
> already been addressed.
>
> Within my schema there is a table that has a GENERATED ALWAYS column
> that calls a plpgsql function.  The called function has a "row type"
> variable declared that  references a view.  While the schema itself
> functions properly day to day, and pg_dumpall works as expected, the
> generated SQL fails to successfully execute.  The table in question is
> restored with no rows, and an error is generated during the COPY stating
> that the type does not exist.
>
> The issue appears to be that the COPY statement for the data is trying
> to execute the function specified for the GENERATED ALWAYS column, and
> that function cannot run because the view that the function references
> does not yet exist.
>
> The dump was made with: pg_dumpall -c --quote-all-identifiers
> --exclude-database=postgres --exclude-database=template0
> --exclude-database=template1
>
> Is this a known or unknown issue, or am I just missing something?

https://www.postgresql.org/docs/current/sql-createtable.html

"GENERATED ALWAYS AS ( generation_expr ) STORED

This clause creates the column as a generated column. The column
cannot be written to, and when read the result of the specified
expression will be returned.

The keyword STORED is required to signify that the column will be
computed on write and will be stored on disk.

The generation expression can refer to other columns in the table,
but not other generated columns. Any functions and operators used must
be immutable. **References to other tables are not allowed.**
"

Emphasis(**) added.

I'm going to say hiding the table/view reference in a function is not
going to work any better then when folks try that in a CHECK constraint.

>
> Any insight is appreciated.  Please reply-all as I'm not currently
> subscribed to the list.  Thanks in advance!

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Nunya Business 2022-12-06 18:19:36 Re[2]: PG 14.5 -- Impossible to restore dump due to interaction/order of views, functions, and generated columns
Previous Message Tom Lane 2022-12-06 15:23:57 Re: PG 14.5 -- Impossible to restore dump due to interaction/order of views, functions, and generated columns

Browse pgsql-general by date

  From Date Subject
Next Message Jeremy Finzel 2022-12-06 16:24:34 Suboptimal GIST index?
Previous Message Tom Lane 2022-12-06 15:23:57 Re: PG 14.5 -- Impossible to restore dump due to interaction/order of views, functions, and generated columns