time of constraint checking - Mailing list pgsql-sql

From Markus Bertheau
Subject time of constraint checking
Date
Msg-id 1098287892.2649.15.camel@dicaprio.akademie1.de
Whole thread Raw
Responses Re: time of constraint checking
Re: time of constraint checking
List pgsql-sql
Hi,

http://www.postgresql.org/docs/current/static/sql-createtable.html says,
down at the explanation of DEFERRABLE, that constraints are checked
after every command. Why does the following not work then:

CREATE TABLE foo (   pos INT UNIQUE
);
INSERT INTO foo (pos) VALUES (1);
INSERT INTO foo (pos) VALUES (2);
UPDATE foo SET pos = CASE WHEN pos = 2 THEN 1 ELSE 2 END;
ERROR:  duplicate key violates unique constraint "foo_pos_key"

Also, are deferrable constraints other that FK constraints in the works?
I also noticed, that the docs don't state whether INITIALLY IMMEDIATE or
INITIALLY DEFERRED is the default.

Thanks.

-- 
Markus Bertheau <twanger@bluetwanger.de>



pgsql-sql by date:

Previous
From: "Scott Marlowe"
Date:
Subject: Re: [GENERAL] SQL update function faililed in Webmin Interface
Next
From: Markus Bertheau
Date:
Subject: Re: time of constraint checking