Hello, I have a question about whether I can safely declare a function IMMUTABLE. Citing the PostgreSQL documentation under "Function Volatility Categories" in the section on "Extending SQL": ---------------------------------------- It is generally unwise to select from database tables within an IMMUTABLE function at all, since the immutability will be broken if the table contents ever change. ---------------------------------------- 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? In this way, it seems that the database would gain the performance benefit of an immutable function for the long stretches of time in between changes to the table. I apologize that I don't have any details -- it is still very early in the development of the database design, and I was just hoping to get a better understanding of whether an immutable function would safely offer any benefit in this scenario. Thanks very much, Bobby ---------------------------(end of broadcast)--------------------------- TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq