Commit 45f5eba9 authored by Neil Conway's avatar Neil Conway

Document the family() function (added during the 7.4 dev cycle but not

documented), and fix a typo.
parent a81b9d67
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.186 2004/02/05 22:54:36 joe Exp $ $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.187 2004/02/22 04:14:06 neilc Exp $
PostgreSQL documentation PostgreSQL documentation
--> -->
...@@ -5998,7 +5998,7 @@ SELECT TIMESTAMP 'now'; ...@@ -5998,7 +5998,7 @@ SELECT TIMESTAMP 'now';
<row> <row>
<entry> <literal>&gt;&gt;</literal> </entry> <entry> <literal>&gt;&gt;</literal> </entry>
<entry>contains</entry> <entry>contains</entry>
<entry><literal>inet'192.168.1/24' &gt;&gt; inet '192.168.1.5'</literal></entry> <entry><literal>inet '192.168.1/24' &gt;&gt; inet '192.168.1.5'</literal></entry>
</row> </row>
<row> <row>
<entry> <literal>&gt;&gt;=</literal> </entry> <entry> <literal>&gt;&gt;=</literal> </entry>
...@@ -6096,6 +6096,13 @@ SELECT TIMESTAMP 'now'; ...@@ -6096,6 +6096,13 @@ SELECT TIMESTAMP 'now';
<entry><literal>abbrev(cidr '10.1.0.0/16')</literal></entry> <entry><literal>abbrev(cidr '10.1.0.0/16')</literal></entry>
<entry><literal>10.1/16</literal></entry> <entry><literal>10.1/16</literal></entry>
</row> </row>
<row>
<entry><literal><function>family</function>(<type>inet</type>)</literal></entry>
<entry><type>integer</type></entry>
<entry>extract family of address; <literal>4</literal> for IPv4,
<literal>6</literal> for IPv6</entry>
<entry><literal>family('::1')</literal></entry>
<entry><literal>6</literal></entry>
</tbody> </tbody>
</tgroup> </tgroup>
</table> </table>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment