Re: DEFERRABLE NOT NULL constraint

From: Thomas Kellerer <spam_eater(at)gmx(dot)net>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: DEFERRABLE NOT NULL constraint
Date: 2013-02-05 10:31:49
Message-ID: keqn11$dio$1@ger.gmane.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Andreas Joseph Krogh, 05.02.2013 11:15:
> Andreas Joseph Krogh, 05.02.2013 10:57:
> > The value of having NOT NULL deferrable is, well, to not check for
> > NULL until the tx commits. When working with ORMs this often is the
> > case, especially with circular FKs.
>
> With circular FKs it's enough to define the FK constraint as deferred.
>
> I meant; circular FKs which are also NOT NULL

A deferrable FK is still enough for that scenario as you can insert FK values that do not yet exist.

See Alban's answer for an example.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Hari Babu 2013-02-05 11:06:52 Re: Hot Standby has PANIC: WAL contains references to invalid pages
Previous Message Alban Hertroys 2013-02-05 10:26:20 Re: DEFERRABLE NOT NULL constraint