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

From: Shane Plesner <gebnar(at)gmail(dot)com>
To:
Cc: pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: Bug / Unintentional Feature: non-immutable functions can be used for generated columns.
Date: 2022-10-01 21:44:31
Message-ID: CAFBci=oVThkEVGZN9FezkMqYO+fTNb08mHCZTqQQydHZ72xs0Q@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

A lot of what makes postgres valuable and trustworthy is the way it
guarantees data consistency.
One cannot apply a mutable function as the generator. The database throws
an exception.
This replacement behavior is, at the very least, completely undocumented.
It seems to me that any time a function is replaced, there could be a check
to see if it was changed from immutable to mutable. If it was, check the
schema for any references to that function that require immutable function
calls, and raise an exception.
Is there something I'm missing that makes this unfeasible?

On Sat, Oct 1, 2022 at 1:54 PM David G. Johnston <david(dot)g(dot)johnston(at)gmail(dot)com>
wrote:

> On Sat, Oct 1, 2022 at 8:27 AM Shane Plesner <gebnar(at)gmail(dot)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.
>

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Jeff Janes 2022-10-01 21:44:36 Re: pg ignores wal files in pg_wal, and instead tries to load them from archive/primary
Previous Message PG Bug reporting form 2022-10-01 21:09:54 BUG #17626: Permission denied errors should list role as well as user