Add missing documentation for new anyarray-overlap operator.

This commit is contained in:
Tom Lane 2006-09-10 19:03:57 +00:00
parent 684ad6a92f
commit 69b7c99265
1 changed files with 8 additions and 1 deletions

View File

@ -1,4 +1,4 @@
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.335 2006/09/10 00:29:33 tgl Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.336 2006/09/10 19:03:57 tgl Exp $ -->
<chapter id="functions">
<title>Functions and Operators</title>
@ -7633,6 +7633,13 @@ SELECT NULLIF(value, '(none)') ...
<entry><literal>t</literal></entry>
</row>
<row>
<entry> <literal>&amp;&amp;</literal> </entry>
<entry>overlap (have elements in common)</entry>
<entry><literal>ARRAY[1,4,3] &amp;&amp; ARRAY[2,1]</literal></entry>
<entry><literal>t</literal></entry>
</row>
<row>
<entry> <literal>||</literal> </entry>
<entry>array-to-array concatenation</entry>