Re: Identity columns should own only one sequence - Mailing list pgsql-hackers

From Peter Eisentraut
Subject Re: Identity columns should own only one sequence
Date
Msg-id 57b6aae1-e487-611b-3377-d372273e0ae0@2ndquadrant.com
Whole thread Raw
In response to Identity columns should own only one sequence  (Laurenz Albe <laurenz.albe@cybertec.at>)
Responses Re: Identity columns should own only one sequence
List pgsql-hackers
On 2019-04-14 17:51, Laurenz Albe wrote:
> Identity columns don't work if they own more than one sequence.

Well, they shouldn't, because then how do they know which sequence they
should use?

> So if one tries to convert a "serial" column to an identity column,
> the following can happen:
> 
> test=> CREATE TABLE ser(id serial);
> CREATE TABLE
> test=> ALTER TABLE ser ALTER id ADD GENERATED ALWAYS AS IDENTITY;
> ERROR:  column "id" of relation "ser" already has a default value
> 
> Hm, ok, let's drop the column default value.
> 
> test=> ALTER TABLE ser ALTER id DROP DEFAULT;
> ALTER TABLE
> 
> Now it works:
> 
> test=> ALTER TABLE ser ALTER id ADD GENERATED ALWAYS AS IDENTITY;
> ALTER TABLE
> 
> But not very much:
> 
> test=> INSERT INTO ser (id) VALUES (DEFAULT);
> ERROR:  more than one owned sequence found

You also need to run

ALTER SEQUENCE ser_id_seq OWNED BY NONE;

because dropping the default doesn't release the linkage of the sequence
with the table.  These are just weird artifacts of how serial is
implemented, but that's why identity columns were added to improve
things.  I don't think we need to make things more complicated here.

-- 
Peter Eisentraut              http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services



pgsql-hackers by date:

Previous
From: Rafia Sabih
Date:
Subject: Re: [PATCH v1] Show whether tables are logged in \dt+
Next
From: Laurenz Albe
Date:
Subject: Re: Identity columns should own only one sequence