@@ -101,12 +101,13 @@ DELETE
101
101
The optional <literal>RETURNING</literal> clause causes <command>MERGE</command>
102
102
to compute and return value(s) based on each row inserted, updated, or
103
103
deleted. Any expression using the source or target table's columns, or
104
- the <xref linkend="merge_action"/> function can be computed. When an
105
- <command>INSERT</command> or <command>UPDATE</command> action is performed,
106
- the new values of the target table's columns are used. When a
107
- <command>DELETE</command> is performed, the old values of the target table's
108
- columns are used. The syntax of the <literal>RETURNING</literal> list is
109
- identical to that of the output list of <command>SELECT</command>.
104
+ the <link linkend="merge-action"><function>merge_action()</function></link>
105
+ function can be computed. When an <command>INSERT</command> or
106
+ <command>UPDATE</command> action is performed, the new values of the target
107
+ table's columns are used. When a <command>DELETE</command> is performed,
108
+ the old values of the target table's columns are used. The syntax of the
109
+ <literal>RETURNING</literal> list is identical to that of the output list
110
+ of <command>SELECT</command>.
110
111
</para>
111
112
112
113
<para>
@@ -462,8 +463,8 @@ DELETE
462
463
An expression to be computed and returned by the <command>MERGE</command>
463
464
command after each row is changed (whether inserted, updated, or deleted).
464
465
The expression can use any columns of the source or target tables, or the
465
- <xref linkend="merge_action"/> function to return additional information
466
- about the action executed.
466
+ <link linkend="merge-action">< function>merge_action()</function></link>
467
+ function to return additional information about the action executed.
467
468
</para>
468
469
<para>
469
470
Writing <literal>*</literal> will return all columns from the source
0 commit comments