projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fcca411
)
Remove incorrect semicolon in example. This was previously fixed in
author
Neil Conway
<
[email protected]
>
Sat, 2 Jun 2007 15:15:30 +0000
(15:15 +0000)
committer
Neil Conway
<
[email protected]
>
Sat, 2 Jun 2007 15:15:30 +0000
(15:15 +0000)
HEAD only -- backporting to 8.2. Per report from Frank van Vugt.
doc/src/sgml/plpgsql.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/plpgsql.sgml
b/doc/src/sgml/plpgsql.sgml
index fa12a5715d26c4187b1b500ca99800251f948d33..accaf398db8d99849e79ca1d7b7ab74b6f585cd1 100644
(file)
--- a/
doc/src/sgml/plpgsql.sgml
+++ b/
doc/src/sgml/plpgsql.sgml
@@
-1237,7
+1237,7
@@
END IF;
to catch the error, for example:
<programlisting>
-BEGIN
;
+BEGIN
SELECT * INTO STRICT myrec FROM emp WHERE empname = myname;
EXCEPTION
WHEN NO_DATA_FOUND THEN