Re: referencing system catalogs - Mailing list pgsql-general

From Stephan Szabo
Subject Re: referencing system catalogs
Date
Msg-id 20040626180235.I81933@megazone.bigpanda.com
Whole thread Raw
In response to referencing system catalogs  (elein <elein@varlena.com>)
List pgsql-general
On Sat, 26 Jun 2004, elein wrote:

> Can someone explain the reasoning behind not allowing
> a user table to contain a foreign key of a system table?
>
> For example:
>
> create table myusers (
>     login    text    references pg_catalog.pg_shadow(usename),
>     ...
> );
>
> Fails with a message about using system catalogs.
> Using pg_user fails because it is a view and not a table.
>
> Is it because updates to the catalogs can be done outside
> of transactions?  Is that a good enough reason?

I believe it's because changes to at least some of the system catalogs can
be done without going through the entire sequence that an
update/insert/delete statement would (ie, the triggers might not be
fired thus meaning the constraint isn't properly checked).

pgsql-general by date:

Previous
From: elein
Date:
Subject: referencing system catalogs
Next
From: "Scott Marlowe"
Date:
Subject: Re: Performance problem on RH7.1