stack depth limit exceeded

From: Jamie Deppeler <jamie(at)doitonce(dot)net(dot)au>
To: PostgreSQL General <pgsql-general(at)postgresql(dot)org>
Subject: stack depth limit exceeded
Date: 2005-08-29 02:01:59
Message-ID: 43126C97.7090707@doitonce.net.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

At the moment i am trying to execute a very simple function but i am
getting the following error stack depth limit exceeded

function

CREATE OR REPLACE FUNCTION "contacts"."addContactField" () RETURNS
trigger AS
$body$
begin
update contacts.person
set "contact" = new.firstname
where person."primary" = new."primary";
return null;
end;
$body$
LANGUAGE 'plpgsql' VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Michael Fuhr 2005-08-29 02:38:06 Re: stack depth limit exceeded
Previous Message Michael Schmidt 2005-08-28 22:27:03 Re: boolean default value