aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2006-09-29 18:36:45 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2006-09-29 18:36:45 +0000
commit673a573dcc1ef928a1047e75aba2926c692e76cc (patch)
tree3591f01ec51c1436d3802c6abb2c7c0762a6b710
parentf213131f2024bcb85aea7d2a7dfadef6a0ee1b31 (diff)
downloadpostgresql-673a573dcc1ef928a1047e75aba2926c692e76cc.tar.gz
postgresql-673a573dcc1ef928a1047e75aba2926c692e76cc.zip
Remove duplicate (and now incorrect) documentation for row-wise IS [NOT]
NULL. Noted by Teodor.
-rw-r--r--doc/src/sgml/func.sgml20
1 files changed, 1 insertions, 19 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index 978309d59ea..6cb3be3b740 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.341 2006/09/28 20:51:41 tgl Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.342 2006/09/29 18:36:45 tgl Exp $ -->
<chapter id="functions">
<title>Functions and Operators</title>
@@ -8829,14 +8829,6 @@ SELECT col1 FROM tab1
<primary>IS NOT DISTINCT FROM</primary>
</indexterm>
- <indexterm>
- <primary>IS NULL</primary>
- </indexterm>
-
- <indexterm>
- <primary>IS NOT NULL</primary>
- </indexterm>
-
<para>
This section describes several specialized constructs for making
multiple comparisons between groups of values. These forms are
@@ -9072,16 +9064,6 @@ AND
be either true or false, never null.
</para>
-<synopsis>
-<replaceable>row_constructor</replaceable> IS NULL
-<replaceable>row_constructor</replaceable> IS NOT NULL
-</synopsis>
-
- <para>
- These constructs test a row value for null or not null. A row value
- is considered not null if it has at least one field that is not null.
- </para>
-
</sect2>
</sect1>