BUG #16153: foreign key update should probably move dependent rows in the case of tuple rerouting
PG Bug reporting form <[email protected]>
| Newsgroups | gmane.comp.db.postgresql.bugs |
|---|---|
| Message-ID | <[email protected]> |
The following bug has been logged on the website: Bug reference: 16153 Logged by: Arne Roland Email address: [email protected] 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