summaryrefslogtreecommitdiff
path: root/doc/src/sgml/plpgsql.sgml
diff options
context:
space:
mode:
authorNeil Conway <neilc@samurai.com>2006-02-18 23:14:45 +0000
committerNeil Conway <neilc@samurai.com>2006-02-18 23:14:45 +0000
commit8c5dfbabffa7709bb7ee2ab97a9f230bc37f8c8d (patch)
tree0969d2311a5dd4f8aca7c6545636f65a667c7d3c /doc/src/sgml/plpgsql.sgml
parent3228a92ccd37201355b3c5f3db5b1d40967eb818 (diff)
Minor SGML style police work.
Diffstat (limited to 'doc/src/sgml/plpgsql.sgml')
-rw-r--r--doc/src/sgml/plpgsql.sgml15
1 files changed, 8 insertions, 7 deletions
diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml
index f0f5aec4315..4e56f75852a 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.86 2006/02/12 06:37:05 tgl Exp $
+$PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.87 2006/02/18 23:14:45 neilc Exp $
-->
<chapter id="plpgsql">
@@ -1594,7 +1594,7 @@ SELECT * FROM some_func();
allow users to define set-returning functions
that do not have this limitation. Currently, the point at
which data begins being written to disk is controlled by the
- <xref linkend="guc-work-mem" xreflabel="work_mem">
+ <xref linkend="guc-work-mem">
configuration variable. Administrators who have sufficient
memory to store larger result sets in memory should consider
increasing this parameter.
@@ -3642,11 +3642,12 @@ $$ LANGUAGE plpgsql;
<para>
<productname>PostgreSQL</> gives you two function creation
- modifiers to optimize execution: <quote>volatility</> (whether the
- function always returns the same result when given the same
- arguments) and <quote>strictness</quote> (whether the
- function returns null if any argument is null). Consult the
- <xref linkend="sql-createfunction"> reference page for details.
+ modifiers to optimize execution: <quote>volatility</> (whether
+ the function always returns the same result when given the same
+ arguments) and <quote>strictness</quote> (whether the function
+ returns null if any argument is null). Consult the <xref
+ linkend="sql-createfunction" endterm="sql-createfunction-title">
+ reference page for details.
</para>
<para>