Commit 69b7c992 authored by Tom Lane's avatar Tom Lane

Add missing documentation for new anyarray-overlap operator.

parent 684ad6a9
<!-- $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"> <chapter id="functions">
<title>Functions and Operators</title> <title>Functions and Operators</title>
...@@ -7633,6 +7633,13 @@ SELECT NULLIF(value, '(none)') ... ...@@ -7633,6 +7633,13 @@ SELECT NULLIF(value, '(none)') ...
<entry><literal>t</literal></entry> <entry><literal>t</literal></entry>
</row> </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> <row>
<entry> <literal>||</literal> </entry> <entry> <literal>||</literal> </entry>
<entry>array-to-array concatenation</entry> <entry>array-to-array concatenation</entry>
......
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