diff options
author | Neil Conway <neilc@samurai.com> | 2004-10-04 05:42:18 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2004-10-04 05:42:18 +0000 |
commit | e374dfc119072b030c78012d4cf7d9a5aa68e707 (patch) | |
tree | 6b3d7e73afa66bcfa15b152aab2a8bc4b2f26939 | |
parent | 8d5ff6bad113196a3fba4c80acf0cc3c83cc080d (diff) | |
download | postgresql-e374dfc119072b030c78012d4cf7d9a5aa68e707.tar.gz postgresql-e374dfc119072b030c78012d4cf7d9a5aa68e707.zip |
Document that the semicolon following the final "END" in a function body
is optional.
-rw-r--r-- | doc/src/sgml/plpgsql.sgml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index 3e87f76f5b3..d705920dcb0 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.47 2004/09/24 18:54:14 tgl Exp $ +$PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.48 2004/10/04 05:42:18 neilc Exp $ --> <chapter id="plpgsql"> @@ -437,7 +437,8 @@ END; <para> Each declaration and each statement within a block is terminated - by a semicolon. + by a semicolon, although the final <literal>END</literal> that + concludes a function body does not require one. </para> <para> |