Re: polymorphic SQL functions has a problem with domains - Mailing list pgsql-hackers

From Andres Freund
Subject Re: polymorphic SQL functions has a problem with domains
Date
Msg-id 20140402163230.GP3750@awork2.anarazel.de
Whole thread Raw
In response to Re: polymorphic SQL functions has a problem with domains  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
On 2014-04-02 12:27:30 -0400, Tom Lane wrote:
> David Johnston <polobo@yahoo.com> writes:
> > Does something like:
> > SELECT ($1 + $2)::$1%TYPE 
> > exist where you can explicitly cast to the type of the input argument?
> 
> I don't think SQL-language functions have such a notation, but it's
> possible in plpgsql, if memory serves.

Sometimes you can play nasty tricks using COALESCE() to force a cast
like that.
E.g. SELECT COALESCE(NULLIF($1, $1), $1 + $2);

Greetings,

Andres Freund

-- Andres Freund                       http://www.2ndQuadrant.com/PostgreSQL Development, 24x7 Support, Training &
Services



pgsql-hackers by date:

Previous
From: Pavel Stehule
Date:
Subject: Re: polymorphic SQL functions has a problem with domains
Next
From: David Johnston
Date:
Subject: Re: polymorphic SQL functions has a problem with domains