From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Andrew Gierth <andrew(at)tao11(dot)riddles(dot)org(dot)uk> |
Cc: | André Hänsel <andre(at)webkr(dot)de>, pgsql-bugs(at)postgresql(dot)org |
Subject: | Re: Two constraints with the same name not always allowed |
Date: | 2018-09-02 17:00:45 |
Message-ID: | 10110.1535907645@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
Andrew Gierth <andrew(at)tao11(dot)riddles(dot)org(dot)uk> writes:
> "André" == André Hänsel <andre(at)webkr(dot)de> writes:
> André> Case 2:
> André> CREATE TABLE t(c integer);
> André> ALTER TABLE t ADD CONSTRAINT foo CHECK(c > 1);
> André> ALTER TABLE t ADD CONSTRAINT foo UNIQUE(c);
> André> -> Creates two constraints, both called "foo".
> I'd call _that_ a bug, myself - having two constraints on a table with
> the same name potentially messes up a lot of automated maintenance
> operations.
Agreed. We must have missed a check for constraint-exists someplace.
This also points up the lack of a suitable unique index on pg_constraint.
It's sort of difficult to figure out what that should look like given that
pg_constraint contains two quasi-independent collections of constraints,
but maybe UNIQUE(conrelid,contypid,conname) would serve given the
reasonable assumption that exactly one of conrelid and contypid is zero.
Potentially we could drop pg_constraint_conrelid_index and
pg_constraint_contypid_index, replacing scans on those with
scans on this new unique index.
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Alvaro Herrera | 2018-09-02 17:05:11 | Re: Two constraints with the same name not always allowed |
Previous Message | Tom Lane | 2018-09-02 16:38:03 | Re: BUG #15361: Add column if not exists create duplicate constraint |