Re: BUG #3296: CASCADING FKs dont DEFER - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #3296: CASCADING FKs dont DEFER
Date
Msg-id 12066.1179842269@sss.pgh.pa.us
Whole thread Raw
In response to BUG #3296: CASCADING FKs dont DEFER  ("S. Robert James" <srobertjames@vesaria.com>)
List pgsql-bugs
"S. Robert James" <srobertjames@vesaria.com> writes:
> If a FK is set to ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED, it does
> not honor the defer.

> That is, if you DELETE a record and then INSERT it back, you still get a FK
> deletion of the referencing record.  This seems to ignore DEFERRED.

Actually, the cascaded delete happens immediately regardless of "defer"
mode; you can only defer constraint checks, not cascade actions.  As far
as I can tell, this is the behavior defined by the SQL spec.  Notice in
particular this statement (from SQL92 11.8 <referential constraint
definition>)

         9) All rows that are marked for deletion are effectively deleted
            at the end of the SQL-statement, prior to the checking of any
            integrity constraints.

which makes it clear that the committee thinks that cascade deletes are
separate from constraint checks.

            regards, tom lane

pgsql-bugs by date:

Previous
From: adam terrey
Date:
Subject: Inconsistant SQL results - Suspected error with query planing or query optimisation.
Next
From: Stephan Szabo
Date:
Subject: Re: ON DELETE CASCADE with multiple paths