inherit with foreign key reference

Поиск
Список
Период
Сортировка
От Aaron Steele
Тема inherit with foreign key reference
Дата
Msg-id 427BD8E1.3080205@berkeley.edu
обсуждение исходный текст
Ответы Re: inherit with foreign key reference  (Stephan Szabo <sszabo@megazone.bigpanda.com>)
Re: inherit with foreign key reference  (Scott Marlowe <smarlowe@g2switchworks.com>)
Re: inherit with foreign key reference  (elein@varlena.com (elein))
Список pgsql-general
dear readers,

i've created a simple Fooey table that inherits from Foo:
!----------------------------------------------------------!
CREATE TABLE Foo(
    fooid        serial UNIQUE,
    footype        text);
CREATE TABLE Fooey(
    data        text);
INHERITS(Foo);
!----------------------------------------------------------!

next i try to create a Bar table that references Fooey's fooid (inherited from Foo) as a foreign key:
!----------------------------------------------------------!
CREATE TABLE Bar(
    fooeyid     int REFERENCES Fooey(fooid));
!----------------------------------------------------------!

unfortunately i get the following error:
!----------------------------------------------------------!
ERROR:  there is no unique constraint matching given keys for referenced table "pagesrc"
!----------------------------------------------------------!

thoughts?

thanks,
aaron


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

Предыдущее
От: Paul Thomas
Дата:
Сообщение: Re: Question about running "Vacuum" through JDBC
Следующее
От: Jonel Rienton
Дата:
Сообщение: Re: pg_ctl bug or feature?