summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian2005-01-17 17:29:49 +0000
committerBruce Momjian2005-01-17 17:29:49 +0000
commitbe105bd7892b2f368720f3b94a63538fc6ce0a21 (patch)
tree351c85208a7fe89c47d092e5d67dd1863d2b61c6
parentbb60ef23ede76678437381389f3f5b9abe36dd45 (diff)
Please find enclosed another patch that now (I hope) really is
correct. It's in addition to the previous patch. David Fetter
-rw-r--r--doc/src/sgml/plperl.sgml11
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/src/sgml/plperl.sgml b/doc/src/sgml/plperl.sgml
index 36ef2dd21c0..554aa99d390 100644
--- a/doc/src/sgml/plperl.sgml
+++ b/doc/src/sgml/plperl.sgml
@@ -1,5 +1,5 @@
<!--
-$PostgreSQL: pgsql/doc/src/sgml/plperl.sgml,v 2.36 2005/01/17 03:04:17 momjian Exp $
+$PostgreSQL: pgsql/doc/src/sgml/plperl.sgml,v 2.37 2005/01/17 17:29:49 momjian Exp $
-->
<chapter id="plperl">
@@ -543,22 +543,23 @@ $$ LANGUAGE plperl;
</varlistentry>
<varlistentry>
- <term><literal>@{$_TD-&gt;{argv}}</literal></term>
+ <term><literal>$_TD-&gt;{argc}</literal></term>
<listitem>
<para>
- Arguments of the trigger function
+ Number of arguments of the trigger function
</para>
</listitem>
</varlistentry>
<varlistentry>
- <term><literal>$_TD-&gt;{argc}</literal></term>
+ <term><literal>@{$_TD-&gt;{args}}</literal></term>
<listitem>
<para>
- Number of arguments of the trigger function
+ Arguments of the trigger function. Does not exist if $_TD-&gt;{argc} is 0.
</para>
</listitem>
</varlistentry>
+
</variablelist>
</para>