Re: [BUGS] BUG #2217: serial in rule and trigger

2006-01-29 Thread Michael Fuhr
On Thu, Jan 26, 2006 at 07:17:57PM +, ATTILA GATI wrote: > create table test(id serial, txt varchar); > create table mon(n int); > create rule monitor as on insert to test do > insert into mon values (NEW.id); > insert into test (txt) values ('xxx'); > > What I expect is to get the latest id w

[BUGS] BUG #2217: serial in rule and trigger

2006-01-27 Thread ATTILA GATI
The following bug has been logged online: Bug reference: 2217 Logged by: ATTILA GATI Email address: [EMAIL PROTECTED] PostgreSQL version: >7.4.7 Operating system: Linux (debian, sarge) Description:serial in rule and trigger Details: create table test(id serial, txt