Add some index entries for RAISE and exception handling in PL/PgSQL. Per
authorNeil Conway
Thu, 10 Feb 2005 06:08:22 +0000 (06:08 +0000)
committerNeil Conway
Thu, 10 Feb 2005 06:08:22 +0000 (06:08 +0000)
suggestion from Rainer Brandt.

doc/src/sgml/plpgsql.sgml

index 798d127991ea1d96b8d1176da9a9f709cd34da4b..a4bef849bd99df3a1ccb72b141ffd8b967933f7a 100644 (file)
@@ -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.