Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 35878b9

Browse files
author
Neil Conway
committed
Add some index entries for RAISE and exception handling in PL/PgSQL. Per
suggestion from Rainer Brandt.
1 parent cf1f6f9 commit 35878b9

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

doc/src/sgml/plpgsql.sgml

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.59 2005/02/10 05:01:07 neilc Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.60 2005/02/10 06:08:22 neilc Exp $
33
-->
44

55
<chapter id="plpgsql">
@@ -1901,6 +1901,11 @@ END LOOP;
19011901
<sect2 id="plpgsql-error-trapping">
19021902
<title>Trapping Errors</title>
19031903

1904+
<indexterm>
1905+
<primary>exceptions</primary>
1906+
<secondary>in PL/PgSQL</secondary>
1907+
</indexterm>
1908+
19041909
<para>
19051910
By default, any error occurring in a <application>PL/pgSQL</>
19061911
function aborts execution of the function, and indeed of the
@@ -2339,6 +2344,15 @@ COMMIT;
23392344
<sect1 id="plpgsql-errors-and-messages">
23402345
<title>Errors and Messages</title>
23412346

2347+
<indexterm>
2348+
<primary>RAISE</primary>
2349+
</indexterm>
2350+
2351+
<indexterm>
2352+
<primary>reporting errors</primary>
2353+
<secondary>in PL/PgSQL</secondary>
2354+
</indexterm>
2355+
23422356
<para>
23432357
Use the <command>RAISE</command> statement to report messages and
23442358
raise errors.

0 commit comments

Comments
 (0)