Re: Self referential foreign keys in partitioned table not working as expected - Mailing list pgsql-bugs

From Christoph Berg
Subject Re: Self referential foreign keys in partitioned table not working as expected
Date
Msg-id Z-u9dhA5ikSgOul9@msg.df7cb.de
Whole thread Raw
In response to Self referential foreign keys in partitioned table not working as expected  (Luca Vallisa <luca.vallisa@gmail.com>)
Responses Re: Self referential foreign keys in partitioned table not working as expected
List pgsql-bugs
Re: Luca Vallisa
> create table test (
>     id_1 int4 not null,
>     id_2 int4 not null,
>     parent_id_1 int4 null,
>     primary key (id_1, id_2),
>     foreign key (parent_id_1, id_2) references test(id_1, id_2)
> ) partition by list(id_1);
> 
> insert into test values (1, 1, null), (1, 2, 1);

Multi-column foreign keys where one column is NULL effectively disable
the FK, this is not specific to partitioned tables. They works as
designed, but best avoid them.

Christoph



pgsql-bugs by date:

Previous
From: Luca Vallisa
Date:
Subject: Self referential foreign keys in partitioned table not working as expected
Next
From: Luca Vallisa
Date:
Subject: Re: Self referential foreign keys in partitioned table not working as expected