Re:

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re:
Дата
Msg-id 20020405143231.B33623-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на ...  (Michael Adler <adler@glimpser.org>)
Ответы Re: inherited columns as foreign keys WAS "no subject"  (Michael Adler <adler@glimpser.org>)
Список pgsql-general
On Fri, 5 Apr 2002, Michael Adler wrote:

>
> I get a "referential integrity violation", but the referenced key *does*
> exist in the referenced table.
>
> ICS=#
> ICS=# insert into  item_attrib_a (id,value) values ('10000000014','yes');
> ERROR:  <unnamed> referential integrity violation - key referenced from item_attrib_a not found in object
> ICS=# select * from object where id = '10000000014';
>      id
> -------------
>  10000000014
> (1 row)
[snipped]
> I created the table "item_attrib_a" like so:
>
> CREATE TABLE item_attrib_a (
>     id int8 references object (id) on delete cascade,
>     value TEXT
> ) inherits (last_modified);
>
> I don't think that it's important, but the table "object" is inherited by
> other tables.

In fact it may certainly be... References constraints do not inherit
to children currently.  The constraint selects from only the named table
(do a select * from ONLY object where id=...) and I'd guess that the row
is actually in one of the children.


В списке pgsql-general по дате отправления:

Предыдущее
От: Michael Adler
Дата:
Сообщение: ...
Следующее
От: Denis Chavez
Дата:
Сообщение: Row locking inside a rule, is it possible?