diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2001-09-10 06:30:43 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2001-09-10 06:30:43 +0000 |
commit | f8f0ff6b579c1c88fd853cc8cd7804f854bfefd2 (patch) | |
tree | 94f6a20722410724780cb323edf7f3e9ca95f71f | |
parent | 82b889a044de165f32607d3896391afa6c7a0c68 (diff) | |
download | postgresql-f8f0ff6b579c1c88fd853cc8cd7804f854bfefd2.tar.gz postgresql-f8f0ff6b579c1c88fd853cc8cd7804f854bfefd2.zip |
Example program lacks RETURN
-rw-r--r-- | doc/src/sgml/plsql.sgml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/src/sgml/plsql.sgml b/doc/src/sgml/plsql.sgml index 4e6ea830862..b3e1bfeb204 100644 --- a/doc/src/sgml/plsql.sgml +++ b/doc/src/sgml/plsql.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.35 2001/05/28 19:33:24 tgl Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.36 2001/09/10 06:30:43 ishii Exp $ --> <chapter id="plpgsql"> @@ -307,6 +307,8 @@ BEGIN END; RAISE NOTICE ''Quantity here is %'',quantity; -- Quantity here is 50 + + RETURN quantity; END; ' LANGUAGE 'plpgsql'; </programlisting> |