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.