aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2005-08-24 18:26:36 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2005-08-24 18:26:36 +0000
commitf21e26225c72060e9631d12ab6faf9f3ada8e2f2 (patch)
tree5b68f8112b99709f45db5065c062f12fc9400a11
parenta62604508f22eee843a5bc8c10ef11f140af5993 (diff)
downloadpostgresql-f21e26225c72060e9631d12ab6faf9f3ada8e2f2.tar.gz
postgresql-f21e26225c72060e9631d12ab6faf9f3ada8e2f2.zip
Fix broken markup.
-rw-r--r--doc/src/sgml/release.sgml19
1 files changed, 9 insertions, 10 deletions
diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml
index 8f66489047a..e41af1c2f00 100644
--- a/doc/src/sgml/release.sgml
+++ b/doc/src/sgml/release.sgml
@@ -1,5 +1,5 @@
<!--
-$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.356 2005/08/24 16:47:00 momjian Exp $
+$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.357 2005/08/24 18:26:36 tgl Exp $
-->
<appendix id="release">
@@ -1243,17 +1243,18 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.356 2005/08/24 16:47:00 momjian
<listitem>
<para>
- Allow SQL, plperl, PL/PgSQL functions to use <command>OUT</> and
+ Allow SQL and PL/PgSQL functions to use <command>OUT</> and
<command>INOUT</> parameters (Tom)
</para>
<para>
<command>OUT</> is an alternate way for a function to return
- values. Instead of using <command>RETURNS</>, the function's
- parameters can be specified as <command>OUT</> or
- <command>INOUT</>, allowing multiple values to be returned by
- the function. While returning multiple values from a function
+ values. Instead of using <command>RETURN</>, values can be
+ returned by assigning to parameters declared as <command>OUT</> or
+ <command>INOUT</>. This is notationally simpler in some cases,
+ particularly so when multiple values need to be returned.
+ While returning multiple values from a function
was possible in previous releases, this greatly simplifies the
- process.
+ process. (The feature will be extended to other PLs in due course.)
</para>
</listitem>
@@ -1261,10 +1262,8 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.356 2005/08/24 16:47:00 momjian
<para>
Move language handlers into the pg_catalog schema
</para>
- </para>
<para>
- This makes it possible to dump installed languages and makes it
- easier to drop the public schema.
+ This makes it easier to drop the public schema if desired.
</para>
</listitem>