Re: IMMUTABLE function to cast enum to/from text? - Mailing list pgsql-general

From Philip Semanchuk
Subject Re: IMMUTABLE function to cast enum to/from text?
Date
Msg-id 26B23DE4-1D92-4201-94B9-1E7FE243EB4B@americanefficient.com
Whole thread Raw
In response to Re: IMMUTABLE function to cast enum to/from text?  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general

> On Nov 10, 2022, at 3:39 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
>
> Joe Conway <mail@joeconway.com> writes:
>>
>> CREATE OR REPLACE FUNCTION mood2text(mood)
>> RETURNS text AS
>> $$
>>  select $1
>> $$ STRICT IMMUTABLE LANGUAGE sql;
>
> Of course, what this is doing is using a SQL-function wrapper to
> lie about the mutability of the expression.  Whether you consider
> that elegant is up to you ;-) ... but it should work, as long as
> you don't break things by renaming the enum's values.


Thanks Joe and Tom,
I’m comfortable lying to Postgres occasionally — never for evil, only for good of course. :-)


Cheers
Philip


pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: IMMUTABLE function to cast enum to/from text?
Next
From: 黄宁
Date:
Subject: get table oid in GIN extracequery function