Re: [GENERAL] inheritance and foreign key

2001-03-09 Thread Stephan Szabo
Yes, it's currently not implemented (see other currently running thread in pgsql-general about this topic) On Fri, 9 Mar 2001 [EMAIL PROTECTED] wrote: > Hello, > > We have the following schema : > create table A (id_A integer primary key,b_A integer); > create table B (a_B integer) inherits A;

[GENERAL] inheritance and foreign key

2001-03-09 Thread Estelle_Littee
Hello, We have the following schema : create table A (id_A integer primary key,b_A integer); create table B (a_B integer) inherits A; create table C (id_C integer primary key, b_C integer); create table D (id1 integer references A (id_A), id2 integer references C (id_C),