Re: BUG #1373: constraints, rules - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #1373: constraints, rules
Date
Msg-id 27619.1105289055@sss.pgh.pa.us
Whole thread Raw
In response to BUG #1373: constraints, rules  ("Bazsi" <bazsi@jonapot.hu>)
List pgsql-bugs
"Bazsi" <bazsi@jonapot.hu> writes:
> PostgreSQL version: 7.2.2
> ...
> If i want to delete this record from the folder table, then the server
> terminate abnormally (sigterm).

I tried to reproduce this in current versions (7.2.6, 7.3.7, etc)
and could not.  So either it was fixed long ago, or you weren't
sufficiently clear about exactly how to trigger the crash.  What
I substituted for the above handwaving was

SELECT * FROM folder;

UPDATE folder SET name = 'z' where name = 'teszt';

SELECT * FROM folder;

DELETE FROM folder WHERE name = 'z';

SELECT * FROM folder;

DELETE FROM folder;

SELECT * FROM folder;


            regards, tom lane

pgsql-bugs by date:

Previous
From: Theodore Petrosky
Date:
Subject: not a bug but where do i go for info
Next
From: Michael Fuhr
Date:
Subject: Re: BUG #1373: constraints, rules