Curious result from text ( netmask ( inet ) ) functions.

Started by Vadim I. Passynkovover 24 years ago2 messagesbugs
Jump to latest

spidermon=# SELECT version();
version
--------------------------------------------------------------
PostgreSQL 7.1.2 on i386--freebsd4.3, compiled by GCC 2.95.3
(1 row)

spidermon=# SELECT netmask ( '192.168.1.1/28' ) ;
netmask
-----------------
255.255.255.240
(1 row)

spidermon=# SELECT text ( netmask ( '192.168.1.1/28' ) );
text
--------------------
255.255.255.240/32 - ??????
(1 row)

--

Vadim I. Passynkov, Axxent Corp.
mailto:pvi@axxent.ca

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Vadim I. Passynkov (#1)
Re: Curious result from text ( netmask ( inet ) ) functions.

"Vadim I. Passynkov" <pvi@axxent.ca> writes:

spidermon=# SELECT text ( netmask ( '192.168.1.1/28' ) );
text
--------------------
255.255.255.240/32 - ??????
(1 row)

That's what it's defined to do. See
http://www.ca.postgresql.org/users-lounge/docs/7.1/postgres/functions-net.html

regards, tom lane