Re: [HACKERS] rule system oddity

2005-01-05 Thread Jaime Casanova
--- Michael Fuhr <[EMAIL PROTECTED]> escribió: > On Tue, Jan 04, 2005 at 11:51:54PM -0600, Jaime > Casanova wrote: > > > create view vfoo as select oid, * from foo; > > ... > > create rule insrule as on insert to vfoo > > do instead > > insert into foo(id, name) values (new.id, > new.name); > >

Re: [HACKERS] rule system oddity

2005-01-04 Thread Michael Fuhr
On Tue, Jan 04, 2005 at 11:51:54PM -0600, Jaime Casanova wrote: > create view vfoo as select oid, * from foo; > ... > create rule insrule as on insert to vfoo > do instead > insert into foo(id, name) values (new.id, new.name); > ... > insert into vfoo values(1, 'test1'); > ERROR: invalid input sy

[HACKERS] rule system oddity

2005-01-04 Thread Jaime Casanova
Hi, i forgot to mention the version it's pgsql-8.0.0rc3. freshly installed. regards, Jaime Casanova _ Do You Yahoo!? Información de Estados Unidos y América Latina, en Yahoo! Noticias. Visítanos en http://noticias.espanol.yahoo.com --

[HACKERS] rule system oddity

2005-01-04 Thread Jaime Casanova
Hi, i was doing some tests and found out this: create table foo ( id serial not null primary key, nametextnot null ); NOTICE: CREATE TABLE will create implicit sequence "foo_id_seq" for serial column "foo.id" NOTICE: CREATE TABLE / PRIMARY KEY will create i