trouble with rules

From: Erich Stamberger <eberger(at)gewi(dot)kfunigraz(dot)ac(dot)at>
To: pgsql-hackers(at)postgresql(dot)org
Subject: trouble with rules
Date: 1999-02-02 05:05:40
Message-ID: Pine.LNX.3.94.990202055631.5284A-100000@gewi.kfunigraz.ac.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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 before or
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

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tatsuo Ishii 1999-02-02 05:34:13 Re: [HACKERS] READ COMMITTED isolevel is implemented ...
Previous Message Bruce Momjian 1999-02-02 03:57:04 TEMP tables applied