Re: Can this function be declared IMMUTABLE? - Mailing list pgsql-general

From Tom Lane
Subject Re: Can this function be declared IMMUTABLE?
Date
Msg-id 410.1188322832@sss.pgh.pa.us
Whole thread Raw
In response to Can this function be declared IMMUTABLE?  (beickhof@Lexmark.com)
Responses Re: Can this function be declared IMMUTABLE?  (Gregory Stark <stark@enterprisedb.com>)
List pgsql-general
beickhof@Lexmark.com writes:
> Well, I am considering a function that does select from a table, but the
> table contents change extremely infrequently (the table is practically a
> list of constants).  Would it be safe to declare the function IMMUTABLE
> provided that the table itself is endowed with a trigger that will drop
> and recreate the function any time the table contents are modified?

What you'd want to do is restart all existing sessions so that any plans
made using precomputed function values are discarded.  The trigger you
suggest is fairly pointless because it will not cause regeneration of
plans.

I concur with Bill's remark that you should first determine if there's
a really substantial benefit to marking the function immutable rather
than merely stable.

            regards, tom lane

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Indexing Foreign Key Columns
Next
From: Tom Lane
Date:
Subject: Re: 8.1.10 release?