Re: [SQL] problem with keyword 'old'

2000-12-03 Thread Jan Wieck
Basilis Kladis wrote: [Charset iso-8859-7 unsupported, filtering to ASCII...] > I am ussing Postgresql v. 6.3 in a RedHat Linux system. I try to create a > rule to log the deletes on table 'filter' ussing the following: First of all, the rule system up to version 6.3 is known to be bro

[SQL] problem with keyword 'old'

2000-11-30 Thread Basilis Kladis
I am ussing Postgresql v. 6.3 in a RedHat Linux system. I try to create a rule to log the deletes on table 'filter' ussing the following: CREATE RULE log_delete_filter AS ON DELETE TO filter DO INSERT INTO log_activity (mod_table, mod_record, mod_type) VALUES ('filter', old.did, 'D');