BUG #4277: Feature request inet type cast numeric values

Поиск
Список
Период
Сортировка
От x
Тема BUG #4277: Feature request inet type cast numeric values
Дата
Msg-id 200807011520.m61FKnfU091407@wwwmaster.postgresql.org
обсуждение исходный текст
Ответы Re: BUG #4277: Feature request inet type cast numeric values
Список pgsql-bugs
The following bug has been logged online:

Bug reference:      4277
Logged by:          x
Email address:      noreply@postgresql.org
PostgreSQL version: n/a
Operating system:   n/a
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';

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #4275: Multicolumn subquery expression not allowed on both sides of IS DISTINCT FROM
Следующее
От: "Heikki Linnakangas"
Дата:
Сообщение: Re: BUG #4277: Feature request inet type cast numeric values