projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cf1f6f9
)
Add some index entries for RAISE and exception handling in PL/PgSQL. Per
author
Neil Conway
Thu, 10 Feb 2005 06:08:22 +0000
(06:08 +0000)
committer
Neil Conway
Thu, 10 Feb 2005 06:08:22 +0000
(06:08 +0000)
suggestion from Rainer Brandt.
doc/src/sgml/plpgsql.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/plpgsql.sgml
b/doc/src/sgml/plpgsql.sgml
index 798d127991ea1d96b8d1176da9a9f709cd34da4b..a4bef849bd99df3a1ccb72b141ffd8b967933f7a 100644
(file)
--- a/
doc/src/sgml/plpgsql.sgml
+++ b/
doc/src/sgml/plpgsql.sgml
@@
-1,5
+1,5
@@
@@
-1901,6
+1901,11
@@
END LOOP;
Trapping Errors
+
+
exceptions
+
in PL/PgSQL
+
+
By default, any error occurring in a
PL/pgSQL>
function aborts execution of the function, and indeed of the
@@
-2339,6
+2344,15
@@
COMMIT;
Errors and Messages
+
+
RAISE
+
+
+
+
reporting errors
+
in PL/PgSQL
+
+
Use the
RAISE
statement to report messages and
raise errors.