aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2006-09-10 19:03:57 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2006-09-10 19:03:57 +0000
commit69b7c99265a495365a49d89692fafe12d2a69d13 (patch)
treea10070aa3d35935e525d92dd591c9d4782dd3f1b
parent684ad6a92fcc33adebdab65c4e7d72a68ba05408 (diff)
downloadpostgresql-69b7c99265a495365a49d89692fafe12d2a69d13.tar.gz
postgresql-69b7c99265a495365a49d89692fafe12d2a69d13.zip
Add missing documentation for new anyarray-overlap operator.
-rw-r--r--doc/src/sgml/func.sgml9
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index f1de523a224..179232ffa02 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -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>
@@ -7634,6 +7634,13 @@ SELECT NULLIF(value, '(none)') ...
</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>
<entry><literal>ARRAY[1,2,3] || ARRAY[4,5,6]</literal></entry>