projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
49b64d3
)
Remove incorrect semicolon in example. Joachim Wieland
author
Tom Lane
Tue, 26 Dec 2006 16:14:58 +0000
(16:14 +0000)
committer
Tom Lane
Tue, 26 Dec 2006 16:14:58 +0000
(16:14 +0000)
doc/src/sgml/plpgsql.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/plpgsql.sgml
b/doc/src/sgml/plpgsql.sgml
index 57e6672fc0abc6e858ec6e00a8158be6e28f74e8..ec276abb826027650dd2520d3caca3ccc82e69f6 100644
(file)
--- a/
doc/src/sgml/plpgsql.sgml
+++ b/
doc/src/sgml/plpgsql.sgml
@@
-1,4
+1,4
@@
-
+
PL/pgSQL
-
SQL
Procedural Language
@@
-1243,7
+1243,7
@@
END IF;
to catch the error, for example:
-BEGIN
;
+BEGIN
SELECT * INTO STRICT myrec FROM emp WHERE empname = myname;
EXCEPTION
WHEN NO_DATA_FOUND THEN