Re: BUG #15425: DETACH/ATTACH PARTITION bug

From: Alvaro Herrera <alvherre(at)2ndquadrant(dot)com>
To: mikemjv(at)gmail(dot)com, pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: BUG #15425: DETACH/ATTACH PARTITION bug
Date: 2018-10-10 16:47:28
Message-ID: 20181010164728.ymzfjw6loxj6flx6@alvherre.pgsql
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs pgsql-hackers

On 2018-Oct-10, PG Bug reporting form wrote:

> After I DETACH a partition, and then try to ATTACH it again, I get errors:
> ERROR: duplicate key value violates unique constraint
> "pg_constraint_conrelid_contypid_conname_index"
> DETAIL: Key (conrelid, contypid, conname)=(26702, 0,
> test_result_asset_id_fkey) already exists.
>
> It looks like it is trying to add the foreign key again.

Thanks. Reproduced with

create table main (a int primary key);
create table part (a int references main) partition by range (a);
create table part1 partition of part for values from (1) to (100);
alter table part detach partition part1;
alter table part attach partition part1 for values from (1) to (100);

Looking into it.

--
Álvaro Herrera https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message PG Bug reporting form 2018-10-10 17:34:01 BUG #15426: A prior column in a default expression of an xmltable() call does not exist
Previous Message PG Bug reporting form 2018-10-10 16:17:23 BUG #15425: DETACH/ATTACH PARTITION bug

Browse pgsql-hackers by date

  From Date Subject
Next Message Chris Travers 2018-10-10 17:09:21 Re: Proposal for Signal Detection Refactoring
Previous Message Tomas Vondra 2018-10-10 16:46:15 Re: Requesting advanced Group By support