aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2024-01-12 12:44:20 +0100
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2024-01-12 12:44:20 +0100
commit35cc9f15908f554d6fddc641536b63414eae234e (patch)
treeeddb37b071d7e3f4dba74b1c66cae07ee50e6af8
parente50a52b2b4487661a39a6f52886991d4c3c4d808 (diff)
downloadpostgresql-35cc9f15908f554d6fddc641536b63414eae234e.tar.gz
postgresql-35cc9f15908f554d6fddc641536b63414eae234e.zip
Added literal tag for RETURNING
This is an old mistake (92e38182d7c8); backpatch all the way back. Author: Atsushi Torikoshi <torikoshia@oss.nttdata.com> Reviewed-by: Ashutosh Bapat <ashutosh.bapat.oss@gmail.com> Discussion: https://postgr.es/m/c0aa00b60a16c0ea2a4c5123b013acb9@oss.nttdata.com
-rw-r--r--doc/src/sgml/ref/copy.sgml8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index 718bf477aeb..cf2938c0629 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -119,10 +119,10 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
For <command>INSERT</command>, <command>UPDATE</command> and
- <command>DELETE</command> queries a RETURNING clause must be provided,
- and the target relation must not have a conditional rule, nor
- an <literal>ALSO</literal> rule, nor an <literal>INSTEAD</literal> rule
- that expands to multiple statements.
+ <command>DELETE</command> queries a <literal>RETURNING</literal> clause
+ must be provided, and the target relation must not have a conditional
+ rule, nor an <literal>ALSO</literal> rule, nor an
+ <literal>INSTEAD</literal> rule that expands to multiple statements.
</para>
</listitem>
</varlistentry>