Index: doc/src/sgml/plpgsql.sgml =================================================================== RCS file: /var/lib/cvs/pgsql/doc/src/sgml/plpgsql.sgml,v retrieving revision 1.59 diff -c -r1.59 plpgsql.sgml *** doc/src/sgml/plpgsql.sgml 10 Feb 2005 05:01:07 -0000 1.59 --- doc/src/sgml/plpgsql.sgml 10 Feb 2005 05:21:57 -0000 *************** *** 1901,1906 **** --- 1901,1911 ---- 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,2344 **** --- 2344,2358 ---- Errors and Messages + + RAISE + + + + reporting errors + in PL/PgSQL + + Use the RAISE statement to report messages and raise errors.