Re: Triggers in C - Segmentation Fault

From: Martijn van Oosterhout <kleptog(at)svana(dot)org>
To: Chris Coleman <chris(at)karumbo(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Triggers in C - Segmentation Fault
Date: 2006-05-12 13:44:31
Message-ID: 20060512134431.GD12955@svana.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Thu, May 11, 2006 at 10:28:37AM +0100, Chris Coleman wrote:
> Hi,
>
> I have written a couple of trigger functions in C that utilise the SPI
> interface. They are both row level triggers, one a before trigger and
> one an after trigger.
>
> If the triggers are called with an update statement that only affects
> one row then both are excecuted correctly and without error. But if I
> try to update multiple rows then this fails.

Probably the easiest thing to do is make sure your functions are
compiled with debugging and enable core dump by running "ulimit -S -c
unlimited" before starting the server. You can then use gdb to
pin-point where it dies...

Hope this helps,
--
Martijn van Oosterhout <kleptog(at)svana(dot)org> http://svana.org/kleptog/
> From each according to his ability. To each according to his ability to litigate.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Martijn van Oosterhout 2006-05-12 13:47:08 Re: trigger TOASTing quicker?
Previous Message chris smith 2006-05-12 13:41:52 Re: Creating of User and Database