Primary Key Update issue ?

Started by Patrick Ficheover 6 years ago4 messagesgeneral
Jump to latest
#1Patrick Fiche
patrick.fiche@aqsacom.com

Hello,

While doing some testing on a Postgresql database, I encountered a strange behavior which is very simple to reproduce.
I just wanted to know if this is expected behavior or if it should be considered as an issue.

The scenario to reproduce it is the following.

CREATE TABLE Test ( pKey integer, Val integer, CONSTRAINT PK_Test PRIMARY Key( pKey ) );

INSERT INTO Test( pKey, Val ) VALUES ( 1, 1 );
INSERT INTO Test( pKey, Val ) VALUES ( 2, 2 );

UPDATE Test SET pKey = pKey + 1;

Here is the error that I get.

SQL Error [23505]: ERROR: duplicate key value violates unique constraint "pk_test"
Detail: Key (pkey)=(2) already exists.

I was expecting pKey to be incremented for each row, which would still respect the unique constraint....

I'm currently using PostgreSQL 11.5 but have the same problem on PostgreSQL 10.3 server.

Best Regards,

Patrick

#2Andreas Joseph Krogh
andreas@visena.com
In reply to: Patrick Fiche (#1)
Sv: Primary Key Update issue ?

På fredag 06. september 2019 kl. 11:06:04, skrev Patrick FICHE <
Patrick.Fiche@aqsacom.com <mailto:Patrick.Fiche@aqsacom.com>>:
Hello,

While doing some testing on a Postgresql database, I encountered a strange
behavior which is very simple to reproduce.

I just wanted to know if this is expected behavior or if it should be
considered as an issue.

The scenario to reproduce it is the following.

CREATE TABLE Test ( pKey integer, Val integer, CONSTRAINT PK_Test PRIMARY Key(
pKey ) );

INSERT INTO Test( pKey, Val ) VALUES ( 1, 1 );

INSERT INTO Test( pKey, Val ) VALUES ( 2, 2 );

UPDATE Test SET pKey = pKey + 1;

Here is the error that I get.

SQL Error [23505]: ERROR: duplicate key value violates unique constraint
"pk_test"

Detail: Key (pkey)=(2) already exists.

I was expecting pKey to be incremented for each row, which would still respect
the unique constraint….

I’m currently using PostgreSQL 11.5 but have the same problem on PostgreSQL
10.3 server.

Best Regards,
It works if you add "DEFERRABLE INITIALLY DEFERRED" to the PK: CREATE TABLE
Test ( pKey integer, Val integer, CONSTRAINT PK_Test PRIMARY Key( pKey )
DEFERRABLE INITIALLY DEFERRED );
andreak@[local]:5432 11.5 test=# CREATE TABLE Test ( pKey integer, Val
integer, CONSTRAINT PK_Test PRIMARY Key( pKey ) DEFERRABLE INITIALLY DEFERRED );
CREATE TABLE
andreak@[local]:5432 11.5 test=# INSERT INTO Test( pKey, Val ) VALUES ( 1, 1 );
INSERT 0 1
andreak@[local]:5432 11.5 test=# INSERT INTO Test( pKey, Val ) VALUES ( 2, 2 );
INSERT 0 1
andreak@[local]:5432 11.5 test=# UPDATE Test SET pKey = pKey + 1;
UPDATE 2
-- Andreas Joseph Krogh CTO / Partner - Visena AS Mobile: +47 909 56 963
andreas@visena.com <mailto:andreas@visena.com> www.visena.com
<https://www.visena.com&gt; <https://www.visena.com&gt;

#3Patrick Fiche
patrick.fiche@aqsacom.com
In reply to: Andreas Joseph Krogh (#2)
RE: Primary Key Update issue ?

Hi Andreas,

Thanks a lot for your answer, which solves this case.
I was still a bit surprised as this is linked to transaction management while I have here a single statement until I saw the Compatibility Remark in documentation : Also, PostgreSQL checks non-deferrable uniqueness constraints immediately, not at end of statement as the standard would suggest.

Regards,

Patrick Fiche

From: Andreas Joseph Krogh <andreas@visena.com>
Sent: Friday, September 6, 2019 11:17 AM
To: pgsql-general@lists.postgresql.org
Subject: Sv: Primary Key Update issue ?

På fredag 06. september 2019 kl. 11:06:04, skrev Patrick FICHE <Patrick.Fiche@aqsacom.com<mailto:Patrick.Fiche@aqsacom.com>>:
Hello,

While doing some testing on a Postgresql database, I encountered a strange behavior which is very simple to reproduce.
I just wanted to know if this is expected behavior or if it should be considered as an issue.

The scenario to reproduce it is the following.

CREATE TABLE Test ( pKey integer, Val integer, CONSTRAINT PK_Test PRIMARY Key( pKey ) );

INSERT INTO Test( pKey, Val ) VALUES ( 1, 1 );
INSERT INTO Test( pKey, Val ) VALUES ( 2, 2 );

UPDATE Test SET pKey = pKey + 1;

Here is the error that I get.

SQL Error [23505]: ERROR: duplicate key value violates unique constraint "pk_test"
Detail: Key (pkey)=(2) already exists.

I was expecting pKey to be incremented for each row, which would still respect the unique constraint….

I’m currently using PostgreSQL 11.5 but have the same problem on PostgreSQL 10.3 server.

Best Regards,

It works if you add "DEFERRABLE INITIALLY DEFERRED" to the PK:
CREATE TABLE Test ( pKey integer, Val integer, CONSTRAINT PK_Test PRIMARY Key( pKey ) DEFERRABLE INITIALLY DEFERRED );

andreak@[local]:5432 11.5 test=# CREATE TABLE Test ( pKey integer, Val integer, CONSTRAINT PK_Test PRIMARY Key( pKey ) DEFERRABLE INITIALLY DEFERRED );
CREATE TABLE
andreak@[local]:5432 11.5 test=# INSERT INTO Test( pKey, Val ) VALUES ( 1, 1 );
INSERT 0 1
andreak@[local]:5432 11.5 test=# INSERT INTO Test( pKey, Val ) VALUES ( 2, 2 );
INSERT 0 1
andreak@[local]:5432 11.5 test=# UPDATE Test SET pKey = pKey + 1;
UPDATE 2

--
Andreas Joseph Krogh
CTO / Partner - Visena AS
Mobile: +47 909 56 963
andreas@visena.com<mailto:andreas@visena.com>
www.visena.com<https://www.visena.com&gt;
[cid:image001.png@01D564A5.CCF075F0]<https://www.visena.com&gt;

Attachments:

image001.pngimage/png; name=image001.pngDownload
#4Andreas Joseph Krogh
andreas@visena.com
In reply to: Patrick Fiche (#3)
RE: Primary Key Update issue ?

På fredag 06. september 2019 kl. 11:25:36, skrev Patrick FICHE <
Patrick.Fiche@aqsacom.com <mailto:Patrick.Fiche@aqsacom.com>>:
Hi Andreas,

Thanks a lot for your answer, which solves this case.

I was still a bit surprised as this is linked to transaction management while
I have here a single statement until I saw the Compatibility Remark in
documentation :Also, PostgreSQL checks non-deferrable uniqueness constraints
immediately, not at end of statement as the standard would suggest.
FWIW - PostgreSQL behaves like Oracle in this regard. -- Andreas Joseph Krogh
CTO / Partner - Visena AS Mobile: +47 909 56 963 andreas@visena.com
<mailto:andreas@visena.com> www.visena.com <https://www.visena.com&gt;
<https://www.visena.com&gt;