Re: foreign key problems

From: Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com>
To: BARTKO, Zoltán <bartko(dot)zoltan(at)pobox(dot)sk>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: foreign key problems
Date: 2005-01-04 14:56:22
Message-ID: 20050104064025.L6897@megazone.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


On Tue, 4 Jan 2005, [iso-8859-2] BARTKO, Zoltn wrote:

> if I create the tables that are in the attached file, I can't insert
> rows into the AAttachment table, even though the rows in DObject with
> the given primary key exist (PgSQL 8.0 rc1 complains about
> (ownerid)=(insert the number here) not available in DObject. The same
> happens with attribute bodyid).

It looks like the set of table definitions you gave in the attached file
do not actually work as given, and there's no example data. Running on
8.0 beta3 I was able to insert data that allowed me to place a row into
AAttachment (and in fact I actually can insert some data that probably
should not be allowed). I'm not sure if that's based on my basically null
definition of DRecord or not however.

In general, however, foreign keys and inheritance don't mix (neither do
primary keys or unique constraints). In general, they'll only currently
work for the table they're in specifically and only for the table
mentioned specifically. So, for example, the references constraints in
AObjAssociation are not inherited by AAttachment. Inheritance really needs
someone to champion getting all of these deficiencies fixed.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message deepthi 2005-01-05 03:30:45 Calling a table in another database from plpgsql
Previous Message BARTKO 2005-01-04 12:15:40 foreign key problems