diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-01-16 13:51:15 +0100 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-01-16 13:51:15 +0100 |
commit | a1d50b69b5b637e3ac403bd314cec783bc1676ba (patch) | |
tree | 4b762114c02b669b9c48b54b3ac22346b2488c92 | |
parent | 39aab11085177e4026cec6065a78a425c44e23e3 (diff) | |
download | postgresql-a1d50b69b5b637e3ac403bd314cec783bc1676ba.tar.gz postgresql-a1d50b69b5b637e3ac403bd314cec783bc1676ba.zip |
Decorate WITH with literal markup tags
One instance of "WITH clause" was not using <literal> tags around
WITH, while others were, so add markup to the last one to ensure
consistency. Backpatch to v15 where MERGE was added.
Reported-by: jian he <jian.universality@gmail.com>
Discussion: https://postgr.es/m/CACJufxGJKY9ZCPV2WDM6xFsXq9C8r7r3vU6AkScN+p9k6CEpMw@mail.gmail.com
Backpatch-through: v15
-rw-r--r-- | doc/src/sgml/ref/merge.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/merge.sgml b/doc/src/sgml/ref/merge.sgml index d66a0626b42..f643e6254d1 100644 --- a/doc/src/sgml/ref/merge.sgml +++ b/doc/src/sgml/ref/merge.sgml @@ -627,8 +627,8 @@ WHEN MATCHED THEN This command conforms to the <acronym>SQL</acronym> standard. </para> <para> - The WITH clause and <literal>DO NOTHING</literal> action are extensions to - the <acronym>SQL</acronym> standard. + The <literal>WITH</literal> clause and <literal>DO NOTHING</literal> + action are extensions to the <acronym>SQL</acronym> standard. </para> </refsect1> </refentry> |