Re: [HACKERS] RI problem with inherited table (fwd)

2000-12-24 Thread Oliver Elphick
I had meant to send this to the list as well. --- Forwarded Message Date:Fri, 22 Dec 2000 23:13:56 + From:"Oliver Elphick" <[EMAIL PROTECTED]> To: Tom Lane <[EMAIL PROTECTED]> Subject: Re: [HACKERS] RI problem with inherited table Tom Lane wrote:

Re: [HACKERS] RI problem with inherited table

2000-12-22 Thread Tom Lane
"Oliver Elphick" <[EMAIL PROTECTED]> writes: > It no longer seems to be possible to refer to a table, which is an > ancestor of any other, in a referential integrity constraint. > bray=# create table junk (id char(10) constraint junk_id_person references > person(id)); > NOTICE: CREATE TABLE wi

[HACKERS] RI problem with inherited table

2000-12-22 Thread Oliver Elphick
It no longer seems to be possible to refer to a table, which is an ancestor of any other, in a referential integrity constraint. In this example, "person" is the ancestor of several other tables: bray=# create table junk (id char(10) constraint junk_id_person references person*(id)); ERROR: p