Re: Referential Integrity

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: Referential Integrity
Дата
Msg-id 20030210074318.C97908-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на Re: Referential Integrity  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-sql
On Mon, 10 Feb 2003, Tom Lane wrote:

> "Alexander Stanier" <alexander.stanier@egsgroup.com> writes:
> > [ expected ON DELETE CASCADE doesn't seem to happen in this context: ]
>
> > CREATE FUNCTION test() RETURNS INT4 AS '
> > DECLARE
> >     v_return INTEGER;
> > BEGIN
> >   DELETE FROM alex
> >         WHERE aid =3D ''1''
> >           AND bid =3D ''1'';
>
> >   INSERT INTO alex (aid,bid,itemdesc)
> >             VALUES (''1'',''1'',''OneOne'');
>
> >   INSERT INTO alexette (aid,bid,vcode)
> >                 VALUES (''1'',''1'',''V'');
>
> >   RETURN 0;
> > END;
> > ' LANGUAGE 'plpgsql';
>
> The cascaded deletes will be implemented at end of statement --- which
> I believe is always taken to be the end of the current interactive
> statement, ie, the "SELECT test()" you typed.  So they haven't happened
> yet at the time the function tries to do the inserts.
>
> This is probably a bug, but IIRC, it's not entirely obvious what to do
> instead. I seem to recall some inconclusive discussions in pgsql-hackers
> about designing a better rule for when to fire the RI actions.  Check
> the list archives for details.

Yeah, I don't think we came to a conclusion.  Looking at SQL99, the
"correct"  behavior seems to be that the actions occur as part of the
actual delete or update action so that effectively at the "same" point in
time the dependant rows are changed, using (I think) 14.14 and 14.20 as a
guide.  This is significantly different from what we do AFAICT though. :(
(For example, I'm not sure if 14.14 implies that after triggers from the
statement inside the function to occur as part of that statement rather
than after the function ends)



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Referential Integrity
Следующее
От: "Alexander Stanier"
Дата:
Сообщение: Re: Referential Integrity