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;

---------------------------(end of broadcast)---------------------------
TIP 2: Don't 'kill -9' the postmaster

Reply via email to