The following bug has been logged on the website:
Bug reference: 16153
Logged by: Arne Roland
Email address: a.roland@index.de
PostgreSQL version: 12.1
Operating system: debian
Description:
--instead of simply deleting them silently
create table a (id serial, primary key (id)) partition by range (id);
create table b (id serial, primary key (id)) partition by range (id);
alter table b add constraint a_fk foreign key (id) references a (id) on
delete cascade;
create table a1 partition of a for values from (1) to (2);
create table a2 partition of a for values from (2) to (3);
create table b1 partition of b for values from (1) to (2);
create table b2 partition of b for values from (2) to (3);
insert into a (id) values (1);
insert into b (id) values (1);
update a set id=2;
select * from b;
Regards
Arne