From: | Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at> |
---|---|
To: | gparc(at)free(dot)fr, pgsql-bugs <pgsql-bugs(at)lists(dot)postgresql(dot)org> |
Subject: | Re: BUG #18295: In PostgreSQL a unique index on targeted columns is sufficient to support a foreign key |
Date: | 2024-01-24 15:28:45 |
Message-ID: | 51c67d44ee2c5c888d9842110a27b9f9c329cb5e.camel@cybertec.at |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
On Wed, 2024-01-24 at 11:11 +0100, gparc(at)free(dot)fr wrote:
> coming from Oracle, I'm surprised to see that in PostgreSQL, a foreign key
> can be linked to a unique index
> on the target table and not exclusively to a primary key constraint or
> UNIQUE constraint.
>
> Is it a bug or an intended feature ? If the latter, I think the doc should
> be amended to remove any ambiguity.
Let's say it is an extension of the standard, but I cannot say if that is
intended or not. At any rate, it has been like that for a very long time,
and changing it might make some users unhappy.
There is some added value, in that you could reference a unique index
that has an INCLUDE clause:
CREATE TABLE parent (id integer, payload integer, other integer);
CREATE UNIQUE INDEX ON parent (id) INCLUDE (payload);
CREATE TABLE child (id integer REFERENCES parent (id));
So it might well be seen as a feature.
Looking at the source, the function comment suggests that that undocumented
feature may be there by accident:
/*
* transformFkeyCheckAttrs -
*
* Make sure that the attributes of a referenced table belong to a unique
* (or primary key) constraint. Return the OID of the index supporting
* the constraint, as well as the opclasses associated with the index
* columns.
*/
The comment is speaking about a constraint, not a unique index.
So perhaps the comment should be updated, along with a note in the documentation
(in ddl.html and ref/create_table.sgml).
> P.S. by the way, I don't know what the SQL standard states about that.
That is simple: since the standard doesn't know indexes, it can only talk
about referencing a constraint.
Yours,
Laurenz Albe
From | Date | Subject | |
---|---|---|---|
Next Message | Laurenz Albe | 2024-01-24 15:32:20 | Re: BUG #18308: SQL query information_schema metadata got error: server process was terminated by signal 11: Segment |
Previous Message | Daniel Gustafsson | 2024-01-24 15:24:38 | Re: BUG #18309: TOASTed entry in pg_subscription provokes an assertion failure |