From 7eb9a8201890f3b208fd4c109a5b08bf139b692a Mon Sep 17 00:00:00 2001 From: Dean Rasheed Date: Sun, 17 Mar 2024 14:48:39 +0000 Subject: [PATCH] Fix PDF doc generation. Commit c649fa24a4 broke PDF generation, due to a misplaced id attribute. Per buildfarm member crake. --- doc/src/sgml/func.sgml | 4 ++-- doc/src/sgml/ref/merge.sgml | 17 +++++++++-------- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index ebb984a994..3c52d90d3a 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -22453,11 +22453,11 @@ SELECT count(*) FROM sometable; - + merge_action - merge_action ( ) + merge_action ( ) text diff --git a/doc/src/sgml/ref/merge.sgml b/doc/src/sgml/ref/merge.sgml index 71feb6634f..44e5ec080d 100644 --- a/doc/src/sgml/ref/merge.sgml +++ b/doc/src/sgml/ref/merge.sgml @@ -101,12 +101,13 @@ DELETE The optional RETURNING clause causes MERGE to compute and return value(s) based on each row inserted, updated, or deleted. Any expression using the source or target table's columns, or - the function can be computed. When an - INSERT or UPDATE action is performed, - the new values of the target table's columns are used. When a - DELETE is performed, the old values of the target table's - columns are used. The syntax of the RETURNING list is - identical to that of the output list of SELECT. + the merge_action() + function can be computed. When an INSERT or + UPDATE action is performed, the new values of the target + table's columns are used. When a DELETE is performed, + the old values of the target table's columns are used. The syntax of the + RETURNING list is identical to that of the output list + of SELECT. @@ -462,8 +463,8 @@ DELETE An expression to be computed and returned by the MERGE command after each row is changed (whether inserted, updated, or deleted). The expression can use any columns of the source or target tables, or the - function to return additional information - about the action executed. + merge_action() + function to return additional information about the action executed. Writing * will return all columns from the source