Re: polymorphic SQL functions has a problem with domains

Поиск
Список
Период
Сортировка
От Andres Freund
Тема Re: polymorphic SQL functions has a problem with domains
Дата
Msg-id 20140402163230.GP3750@awork2.anarazel.de
обсуждение исходный текст
Ответ на Re: polymorphic SQL functions has a problem with domains  (Tom Lane <tgl@sss.pgh.pa.us>)
Список 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 по дате отправления:

Предыдущее
От: Pavel Stehule
Дата:
Сообщение: Re: polymorphic SQL functions has a problem with domains
Следующее
От: David Johnston
Дата:
Сообщение: Re: polymorphic SQL functions has a problem with domains