From d7763c1f9c950c991daa196609bbd9359ec03a09 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 13 Jun 2001 22:51:02 +0000 Subject: [PATCH] Docs for: > >> inet(text), cidr(text): convert a text value into inet/cidr > >> set_masklen(inet): set masklen on the inet value Alex Pilosov --- doc/src/sgml/func.sgml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index c80ab6cf74..253e920d9f 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,4 +1,4 @@ - + Functions and Operators @@ -3306,6 +3306,13 @@ Not defined by this name. Implements the intersection operator '#' masklen('192.168.1.5/24') 24 + + set_masklen(inet,integer) + inet + set netmask length for inet value + set_masklen('192.168.1.5/24',16) + 192.168.1.5/16 + netmask(inet) inet @@ -3342,7 +3349,9 @@ Not defined by this name. Implements the intersection operator '#' All of the functions for inet can be applied to cidr values as well. The host(), text(), and abbrev() functions are primarily - intended to offer alternative display formats. + intended to offer alternative display formats. You can cast a text + field to inet using normal casting syntax: inet(fieldname) or + fieldname::inet.