aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2001-11-28 04:18:46 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2001-11-28 04:18:46 +0000
commit0dd3afad6bccdc698c832b654d11618d6eea071e (patch)
treefd01d68bfb6ce12bcc659c429aa024278bfdb6c4
parent93f54561d71875bae215536ff08184514537efee (diff)
downloadpostgresql-0dd3afad6bccdc698c832b654d11618d6eea071e.tar.gz
postgresql-0dd3afad6bccdc698c832b654d11618d6eea071e.zip
Reiterate that parsing of plpgsql functions is per-process.
-rw-r--r--doc/src/sgml/plsql.sgml5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/plsql.sgml b/doc/src/sgml/plsql.sgml
index 19b1f0d2784..a7c9b12c1b0 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.50 2001/11/21 05:53:41 thomas Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.51 2001/11/28 04:18:46 tgl Exp $
-->
<chapter id="plpgsql">
@@ -62,7 +62,8 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.50 2001/11/21 05:53:41
<para>
The <application>PL/pgSQL</> call handler parses the function's source text and
produces an internal binary instruction tree the first time the
- function is called. The instruction tree fully translates the
+ function is called (within any one backend process). The instruction tree
+ fully translates the
<application>PL/pgSQL</> statement structure, but individual
<acronym>SQL</acronym> expressions and <acronym>SQL</acronym> queries
used in the function are not translated immediately.