Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4a836ba

Browse files
committed
Remove incorrect semicolon in example. Joachim Wieland
1 parent 49b64d3 commit 4a836ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/src/sgml/plpgsql.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.101 2006/10/23 18:10:31 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.102 2006/12/26 16:14:58 tgl Exp $ -->
22

33
<chapter id="plpgsql">
44
<title><application>PL/pgSQL</application> - <acronym>SQL</acronym> Procedural Language</title>
@@ -1243,7 +1243,7 @@ END IF;
12431243
to catch the error, for example:
12441244

12451245
<programlisting>
1246-
BEGIN;
1246+
BEGIN
12471247
SELECT * INTO STRICT myrec FROM emp WHERE empname = myname;
12481248
EXCEPTION
12491249
WHEN NO_DATA_FOUND THEN

0 commit comments

Comments
 (0)