trouble with rules - Mailing list pgsql-hackers

From Erich Stamberger
Subject trouble with rules
Date
Msg-id Pine.LNX.3.94.990202055631.5284A-100000@gewi.kfunigraz.ac.at
Whole thread Raw
Responses Re: [HACKERS] trouble with rules  (jwieck@debis.com (Jan Wieck))
List pgsql-hackers
Hi!

can somebody see this too?

create table t1(i1 int4);
create table t2(i1 int4);
create table t3(i2 int4);

test=> create rule rm_t1 as on delete to t1 
test-> do ( delete from t2 where old.i1 = i1;
test->      delete from t3 where old.i1 = i2;);
pqReadData() -- backend closed the channel unexpectedly.       This probably means the backend terminated abnormally
beforeor
 
while processing the request.
We have lost the connection to the backend, so further processing is
impossible.  Terminating.


OS = Linux 2.0.35, gcc 2.7.2.3, postgreSQL-6.4.2


Regards
Erich



pgsql-hackers by date:

Previous
From: "Hiroshi Inoue"
Date:
Subject: RE: [HACKERS] READ COMMITTED isolevel is implemented ...
Next
From: Magnus Hagander
Date:
Subject: RE: [HACKERS] Small patches in copy.c and trigger.c