BUG #1195: foreignkey-bug

Поиск
Список
Период
Сортировка
От PostgreSQL Bugs List
Тема BUG #1195: foreignkey-bug
Дата
Msg-id 20040718141207.DDCAECF4B0D@www.postgresql.com
обсуждение исходный текст
Ответы Re: BUG #1195: foreignkey-bug  (Peter Eisentraut <peter_e@gmx.net>)
Список pgsql-bugs
The following bug has been logged online:

Bug reference:      1195
Logged by:          Michael Groth

Email address:      m.groth@10grad.de

PostgreSQL version: 7.4

Operating system:   debian

Description:        foreignkey-bug

Details:

hello,

this constraint doesn't work correctly : 'FOREIGN KEY (id_1, id_2)
REFERENCES table_1 ON DELETE CASCADE'
adding records into table_2 the database sometimes said that there is no
corresponding record in table_1, but there is.

otherwise this constraint work correctly with the same list of records:
'FOREIGN KEY (id_1, id_2) REFERENCES table_1 (id_1, id_2) ON DELETE CASCADE'



table-structure:


CREATE TABLE table_1 (
    id_1 int NOT NULL,
    id_2 int NOT NULL,
    PRIMARY KEY (id_1, id_2)
);



CREATE TABLE table_2 (
    id_1 int NOT NULL,
    id_2 int NOT NULL,
    FOREIGN KEY (id_1, id_2) REFERENCES table_1 ON DELETE CASCADE
);



best regards

michael

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Problems renaming referencing column
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: BUG #1195: foreignkey-bug