Re: disallow ALTER VIEW SET DEFAULT when the corresponding base relation column is a generated column - Mailing list pgsql-hackers

From Tom Lane
Subject Re: disallow ALTER VIEW SET DEFAULT when the corresponding base relation column is a generated column
Date
Msg-id 835270.1744380452@sss.pgh.pa.us
Whole thread Raw
In response to disallow ALTER VIEW SET DEFAULT when the corresponding base relation column is a generated column  (jian he <jian.universality@gmail.com>)
Responses Re: disallow ALTER VIEW SET DEFAULT when the corresponding base relation column is a generated column
List pgsql-hackers
jian he <jian.universality@gmail.com> writes:
> CREATE TABLE gtest1 (a int, b int GENERATED ALWAYS AS (a * 2) STORED);
> CREATE VIEW gtest1v AS SELECT * FROM gtest1;
> ALTER VIEW gtest1v ALTER COLUMN b SET DEFAULT 100;

> INSERT INTO gtest1v VALUES (8, DEFAULT) returning *;
> ERROR:  cannot insert a non-DEFAULT value into column "b"
> DETAIL:  Column "b" is a generated column.

> we can make
> ALTER VIEW gtest1v ALTER COLUMN b SET DEFAULT 100;
> error out,

This is not an improvement over having the error happen at run time.

(1) What if the state of the underlying column changes between the
ALTER VIEW and the INSERT?  Either you have rejected something
that could have worked, or in the other direction you're going to get
the run-time error anyway.

(2) I don't see anything wrong or surprising about the run-time
error anyway, thus I fail to see that this is an improvement,
even aside from (1).

            regards, tom lane



pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: COALESCE with single argument looks like identity function
Next
From: Antonin Houska
Date:
Subject: Conflicting updates of command progress