BUG #1955: trigger action on delete

From: "incheol yang" <zoar(at)paran(dot)com>
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #1955: trigger action on delete
Date: 2005-10-11 13:30:49
Message-ID: 20051011133049.E68E9F0FF0@svr2.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


The following bug has been logged online:

Bug reference: 1955
Logged by: incheol yang
Email address: zoar(at)paran(dot)com
PostgreSQL version: 8.0.4
Operating system: fedora core 4
Description: trigger action on delete
Details:

kernel : version 2.6.13-1.1526_FC4
CPU : AMD ATHLON 1G Hz kernel version

rpm postgresql-8.0.4-2.FC4.1
db encoded by UNICODE
_int.sql contrib was appended

source code was copied by mouse.
cc (GCC) 4.0.1 20050727 (Red Hat 4.0.1-5)

cc -fpic -c trigf.c -I/usr/include/pgsql/server
cc -shared -o trigf.so trigf.o

cp trigf.so /usr/lib/pgsql/.

===============================================================

8.0.4 Document chapter 32.4
=============================================================== INSERT,
INSERT INTO, UPDATE commands had same output, but

=> DELETE FROM ttest;
INFO: trigf (fired before): there are 2 rows in ttest INFO: trigf (fired
after ): there are 1 rows in ttest INFO: trigf (fired before): there are 1
rows in ttest INFO: trigf (fired after ): there are 0 rows in ttest


fired before -> after -> before -> after

===============================================================
My output
===============================================================

=> DELETE FROM ttest;
INFO: trigf (fired before): there are 2 rows in ttest INFO: trigf (fired
before): there are 1 rows in ttest INFO: trigf (fired after ): there are 0
rows in ttest INFO: trigf (fired after ): there are 0 rows in ttest

fired before -> before -> after -> after

Is this my fault?

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2005-10-11 15:00:13 Re: BUG #1955: trigger action on delete
Previous Message Jean-Pierre Pelletier 2005-10-11 12:36:16 Re: Possibly corrupted shared memory, PostgreSQL 8.1 beta2, Windows 2000