diff options
author | Bruce Momjian <bruce@momjian.us> | 2020-10-26 22:38:11 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2020-10-26 22:38:11 -0400 |
commit | a645c08838d6d4ae55ac4df57cfd91f0b9e4f812 (patch) | |
tree | 648188e09437126df7cc134dea947a94c672e762 /doc/src | |
parent | 4747655111b0bae6e45729ee4b06156ea6c40a77 (diff) |
doc: simplify wording of function error affects
Reported-by: bob.henkel@gmail.com
Discussion: https://postgr.es/m/160324449781.693.8298142858847611071@wrigleys.postgresql.org
Backpatch-through: 9.5
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/plpgsql.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index a71a8e7e487..ad1abdd0cab 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -2632,8 +2632,8 @@ NOTICE: row = {10,11,12} <para> By default, any error occurring in a <application>PL/pgSQL</application> - function aborts execution of the function, and indeed of the - surrounding transaction as well. You can trap errors and recover + function aborts execution of the function and the + surrounding transaction. You can trap errors and recover from them by using a <command>BEGIN</command> block with an <literal>EXCEPTION</literal> clause. The syntax is an extension of the normal syntax for a <command>BEGIN</command> block: |