AW: [HACKERS] PLEASE help with foreign key and inheritance problem

2000-12-13 Thread Zeugswetter Andreas SB
> I stated this before, but I did not get a helpful answer. I > might have > misunderstood tghe documentation on foreign keys: > > create table global(id serial); > create table child(anything text) inherits(global); need: create unique index child_id_index on child (id); > gives me

[HACKERS] PLEASE help with foreign key and inheritance problem

2000-12-13 Thread Horst Herb
I stated this before, but I did not get a helpful answer. I might have misunderstood tghe documentation on foreign keys: create table global(id serial); create table child(anything text) inherits(global); insert into child(anything) values ('test); Now, a select * from child shows id anyth