Re: Bug / Unintentional Feature: non-immutable functions can be used for generated columns. - Mailing list pgsql-bugs

From David G. Johnston
Subject Re: Bug / Unintentional Feature: non-immutable functions can be used for generated columns.
Date
Msg-id CAKFQuwbg6OF0RntkAmK9SND+i5fYDV9XQEShJQ_eP0TeCqAcWw@mail.gmail.com
Whole thread Raw
In response to Bug / Unintentional Feature: non-immutable functions can be used for generated columns.  (Shane Plesner <gebnar@gmail.com>)
Responses Re: Bug / Unintentional Feature: non-immutable functions can be used for generated columns.
List pgsql-bugs
On Sat, Oct 1, 2022 at 8:27 AM Shane Plesner <gebnar@gmail.com> wrote:
Important preface: This "bug" turns out to enable functionality that is extremely useful. Please carefully consider how the usefulness of this can be retained when "fixing" the bug.

No error or warning or behavioral problems occur if the function used to fill a generated column is replaced with a non-immutable version after it is assigned as the column generator.

 
Discovered by Shane Plesner, by accident, about 10 minutes ago...

Discovered (in various incarnations) by many people over the years...

The documentation clearly states this is not a supported setup.  In particular it tends to break during dump/restore (though I think that mostly happens for check constraints).  It is unfortunate that the system cannot simply prohibit the action and instead must rely upon documentation, but that is how things are.  Furthermore, if you lie to the system like in your example, about your function being immutable when it actually is not, the consequences are on you alone (i.e., we do not try to static analyze the function body).  That includes fixing any problems if you determine a truly immutable function is buggy and thus needs to be changed to produce the correct output which is different that prior output.

David J.

pgsql-bugs by date:

Previous
From: Shane Plesner
Date:
Subject: Bug / Unintentional Feature: non-immutable functions can be used for generated columns.
Next
From: PG Bug reporting form
Date:
Subject: BUG #17626: Permission denied errors should list role as well as user