diff options
Diffstat (limited to 'doc/src/sgml/plperl.sgml')
-rw-r--r-- | doc/src/sgml/plperl.sgml | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/doc/src/sgml/plperl.sgml b/doc/src/sgml/plperl.sgml index 76a3699aaf..596beca416 100644 --- a/doc/src/sgml/plperl.sgml +++ b/doc/src/sgml/plperl.sgml @@ -728,7 +728,7 @@ $$ LANGUAGE plperl; </varlistentry> <varlistentry> - <term><literal>$_TD->{relname}</literal></term> + <term><literal>$_TD->{table_name}</literal></term> <listitem> <para> Name of the table on which the trigger fired @@ -737,6 +737,26 @@ $$ LANGUAGE plperl; </varlistentry> <varlistentry> + <term><literal>$_TD->{relname}</literal></term> + <listitem> + <para> + Name of the table on which the trigger fired. This has been deprecated, + and could be removed in a future release. + Please use $_TD->{table_name} instead. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><literal>$_TD->{table_schema}</literal></term> + <listitem> + <para> + Name of the schema in which the table on which the trigger fired, is + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><literal>$_TD->{argc}</literal></term> <listitem> <para> |