Re: Bug of ALTER TABLE DROP CONSTRAINT - Mailing list pgsql-hackers

From Tom Lane
Subject Re: Bug of ALTER TABLE DROP CONSTRAINT
Date
Msg-id 19768.1238680878@sss.pgh.pa.us
Whole thread Raw
In response to Re: Bug of ALTER TABLE DROP CONSTRAINT  (Robert Haas <robertmhaas@gmail.com>)
Responses Re: Bug of ALTER TABLE DROP CONSTRAINT  (Nikhil Sontakke <nikhil.sontakke@enterprisedb.com>)
List pgsql-hackers
Robert Haas <robertmhaas@gmail.com> writes:
> Actually it's more complicated than that.  You'd need to remember
> whether or not the NOT NULL was added when the primary key was added,
> or whether it was there before, and only drop it if it wasn't there
> before.

We've discussed before the idea that NOT NULL constraints should be
explicitly represented in pg_constraint, just like general CHECK
constraints (this would allow them to be named, have sane inheritance
behavior, etc).  If we had that, then pg_attribute.attnotnull could
indicate the OR of "there is a NOT NULL on this column" and "there is
a pkey constraint on this column", and you'd just have to recompute it
properly after dropping either kind of constraint.

Not happening for 8.4, but maybe someday someone will get around to it.
        regards, tom lane


pgsql-hackers by date:

Previous
From: Nikhil Sontakke
Date:
Subject: Re: Bug of ALTER TABLE DROP CONSTRAINT
Next
From: Hitoshi Harada
Date:
Subject: A trivial doc patch for pgstattuple