summaryrefslogtreecommitdiff
path: root/doc/src/sgml/plpgsql.sgml
diff options
context:
space:
mode:
authorDavid Rowley <drowley@postgresql.org>2025-11-17 10:51:26 +1300
committerDavid Rowley <drowley@postgresql.org>2025-11-17 10:51:26 +1300
commit2b54a1abdbb09a4b170bca82726dabe7b2d6555b (patch)
tree362b018402357bb15fb6c6a19cc882661e231bc0 /doc/src/sgml/plpgsql.sgml
parent23792d7381583d04c4bbd0a8507566401ec013d3 (diff)
Doc: include MERGE in variable substitution command list
Backpatch to 15, where MERGE was introduced. Reported-by: <emorgunov@mail.ru> Author: David Rowley <dgrowleyml@gmail.com> Discussion: https://postgr.es/m/176278494385.770.15550176063450771532@wrigleys.postgresql.org Backpatch-through: 15
Diffstat (limited to 'doc/src/sgml/plpgsql.sgml')
-rw-r--r--doc/src/sgml/plpgsql.sgml14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml
index b561b4cc580..561f6e50d63 100644
--- a/doc/src/sgml/plpgsql.sgml
+++ b/doc/src/sgml/plpgsql.sgml
@@ -4962,13 +4962,13 @@ $$ LANGUAGE plpgsql;
<para>
Variable substitution currently works only in <command>SELECT</command>,
<command>INSERT</command>, <command>UPDATE</command>,
- <command>DELETE</command>, and commands containing one of
- these (such as <command>EXPLAIN</command> and <command>CREATE TABLE
- ... AS SELECT</command>),
- because the main SQL engine allows query parameters only in these
- commands. To use a non-constant name or value in other statement
- types (generically called utility statements), you must construct
- the utility statement as a string and <command>EXECUTE</command> it.
+ <command>DELETE</command>, <command>MERGE</command> and commands
+ containing one of these (such as <command>EXPLAIN</command> and
+ <command>CREATE TABLE ... AS SELECT</command>), because the main SQL
+ engine allows query parameters only in these commands. To use a
+ non-constant name or value in other statement types (generically called
+ utility statements), you must construct the utility statement as a string
+ and <command>EXECUTE</command> it.
</para>
</sect2>