Re: BUG #4277: Feature request inet type cast numeric values

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема Re: BUG #4277: Feature request inet type cast numeric values
Дата
Msg-id 486A52F4.6070309@enterprisedb.com
обсуждение исходный текст
Ответ на BUG #4277: Feature request inet type cast numeric values  ("x" <noreply@postgresql.org>)
Ответы Re: BUG #4277: Feature request inet type cast numeric values
Список pgsql-bugs
x wrote:
> Description:        Feature request inet type cast numeric values
> Details:
>
> SELECT inet 2130706433;
>
> Should return:
> ?column?
> --------
> 127.0.0.1
>
> This would emulate the functionality:
> CREATE OR REPLACE FUNCTION inet_ntoa(bigint) RETURNS text AS '
> SELECT (($1>>24) & 255::int8) || ''.'' ||
> (($1>>16) & 255::int8) || ''.'' ||
> (($1>>8) & 255::int8) || ''.'' ||
> ($1 & 255::int8) as result
> '
> LANGUAGE 'SQL';

You can create the cast yourself if you want to, see CREATE CAST.

--
   Heikki Linnakangas
   EnterpriseDB   http://www.enterprisedb.com

В списке pgsql-bugs по дате отправления:

Предыдущее
От: "x"
Дата:
Сообщение: BUG #4277: Feature request inet type cast numeric values
Следующее
От: Tom Lane
Дата:
Сообщение: Re: BUG #4277: Feature request inet type cast numeric values