Re: An easy question about creating a primary key - Mailing list pgsql-sql

From Tom Lane
Subject Re: An easy question about creating a primary key
Date
Msg-id 20774.1007431941@sss.pgh.pa.us
Whole thread Raw
In response to Re: An easy question about creating a primary key  ("Christopher Kings-Lynne" <chriskl@familyhealth.com.au>)
List pgsql-sql
"Christopher Kings-Lynne" <chriskl@familyhealth.com.au> writes:
> I have submitted code for 7.2b3 that allows ADD UNIQUE after table creation,
> but you'll have to wait until 7.3 for ADD PRIMARY KEY after table createion.

I think you've forgotten your own work, Chris.

regression=# create table foo (bar int not null);
CREATE
regression=# alter table foo add primary key (bar);
NOTICE:  ALTER TABLE / ADD PRIMARY KEY will create implicit index 'foo_pkey' for table 'foo'
CREATE
regression=#

Having to have marked the columns as "not null" from the beginning is a
painful limitation, but it's not like the feature doesn't exist at all.
        regards, tom lane


pgsql-sql by date:

Previous
From: "Christopher Kings-Lynne"
Date:
Subject: Re: An easy question about creating a primary key
Next
From: Manuel Trujillo
Date:
Subject: problems with this wiew