Index: doc/src/sgml/plperl.sgml =================================================================== RCS file: /projects/cvsroot/pgsql/doc/src/sgml/plperl.sgml,v retrieving revision 2.35 diff -c -r2.35 plperl.sgml *** doc/src/sgml/plperl.sgml 30 Dec 2004 21:45:36 -0000 2.35 --- doc/src/sgml/plperl.sgml 17 Jan 2005 02:46:59 -0000 *************** *** 489,495 **** ! $_TD{name} Name of the trigger being called --- 489,495 ---- ! $_TD->{name} Name of the trigger being called *************** *** 498,504 **** ! $_TD{event} Trigger event: INSERT, UPDATE, DELETE, or UNKNOWN --- 498,504 ---- ! $_TD->{event} Trigger event: INSERT, UPDATE, DELETE, or UNKNOWN *************** *** 507,513 **** ! $_TD{when} When the trigger was called: BEFORE, AFTER, or UNKNOWN --- 507,513 ---- ! $_TD->{when} When the trigger was called: BEFORE, AFTER, or UNKNOWN *************** *** 516,522 **** ! $_TD{level} The trigger level: ROW, STATEMENT, or UNKNOWN --- 516,522 ---- ! $_TD->{level} The trigger level: ROW, STATEMENT, or UNKNOWN *************** *** 525,531 **** ! $_TD{relid} OID of the table on which the trigger fired --- 525,531 ---- ! $_TD->{relid} OID of the table on which the trigger fired *************** *** 534,540 **** ! $_TD{relname} Name of the table on which the trigger fired --- 534,540 ---- ! $_TD->{relname} Name of the table on which the trigger fired *************** *** 543,549 **** ! @{$_TD{argv}} Arguments of the trigger function --- 543,549 ---- ! @{$_TD->{argv}} Arguments of the trigger function *************** *** 552,558 **** ! $_TD{argc} Number of arguments of the trigger function --- 552,558 ---- ! $_TD->{argc} Number of arguments of the trigger function