Re: [HACKERS] [BUGS] Conditional NOTIFY is not implemented

2001-09-10 Thread tomas
On Thu, Sep 06, 2001 at 03:16:26PM -0400, Tom Lane wrote: > [EMAIL PROTECTED] writes: > > versuch=# CREATE RULE ru_u_chkntfy AS ON UPDATE TO chkntfy DO NOTIFY CHKNTFY; > > CREATE > > versuch=# update chkntfy set nummer=10 where nummer = 1; > > ERROR: Conditional NOTIFY is not implemented > >

Re: [HACKERS] [BUGS] Conditional NOTIFY is not implemented

2001-09-06 Thread Tom Lane
[EMAIL PROTECTED] writes: > My pattern of use for ``CREATE RULE... NOTIFY...'' was, up to now, to get > a notice when anything changed on a table and then go look what happened; > a `poor man's statement level trigger' if you wish. Thus, the old behavior > didn't bother me that much. I don't know

Re: [HACKERS] [BUGS] Conditional NOTIFY is not implemented

2001-09-06 Thread Tom Lane
[EMAIL PROTECTED] writes: > versuch=# CREATE RULE ru_u_chkntfy AS ON UPDATE TO chkntfy DO NOTIFY CHKNTFY; > CREATE > versuch=# update chkntfy set nummer=10 where nummer = 1; > ERROR: Conditional NOTIFY is not implemented > Somehow the notify seems to take up the `where' qualifier of the quer