Re: Rename a constraint - Mailing list pgsql-general

From Tom Lane
Subject Re: Rename a constraint
Date
Msg-id 20376.1306681964@sss.pgh.pa.us
Whole thread Raw
In response to Re: Rename a constraint  (Thom Brown <thombrown@gmail.com>)
Responses Re: Rename a constraint  (Thom Brown <thombrown@gmail.com>)
List pgsql-general
Thom Brown <thombrown@gmail.com> writes:
> On 10 January 2009 19:22, Raymond O'Donnell <rod@iol.ie> wrote:
>> On 10/01/2009 19:15, Thom Brown wrote:
>>> I can't find anything in the documentation, but does anyone know if
>>> there is a way to rename a constraint?

>> I just tried it with a primary key...
>>
>> test=# alter table t1 alter constraint t1_pk rename to t1_pp;
>> ERROR: �syntax error at or near "constraint"
>> LINE 1: alter constraint t1_pk rename to t1_pp;
>>
>> ... and as you can see it didn't work. I suppose you could always drop
>> and recreate it with a different name.

> While this was a sufficient solution for the problem I was having back
> then, it will be problematic for those with large tables as it means
> re-validating the constraint against the entire table.

Use ALTER INDEX RENAME to rename the index underlying the constraint.
The constraint will follow along.

            regards, tom lane

pgsql-general by date:

Previous
From: Tareq Tajkeh
Date:
Subject: ...
Next
From: Thom Brown
Date:
Subject: Re: Rename a constraint