Problems understanding functions.

From: "Duncan Adams (DNS)" <duncan(dot)adams(at)vcontractor(dot)co(dot)za>
To: pgsql-novice(at)postgresql(dot)org
Subject: Problems understanding functions.
Date: 2002-09-17 15:47:13
Message-ID: 034A824BAA3FBA4CA0CBEF1031A02F3519F1D7@zablv02001.vodacom.corp
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Hi all

I must be reading the wrong documentation but i just can't get the following
function working.
I don't get an error but it appears as if the function goes in to a loop.
I could do this with PHP but would really like to get it right in plpgsql.

could someone please look at it and also add a 'plpgsql for dummies' URL

thanx Duncan.

drop function fun_power_ups();
create function fun_power_ups() RETURNS OPAQUE as '
begin
update power set ups = substring(power.phase from 1 for 1)
where old.power_id = new.power_id;
return new;
end;
' language 'plpgsql';

drop trigger tri_power_ups on power;
create trigger tri_power_ups after insert or update on power for each row
execute PROCEDURE fun_power_ups();

(this is all on one table.)

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Oliver Elphick 2002-09-17 16:11:11 Re: Problems understanding functions.
Previous Message Andrew Sullivan 2002-09-17 15:19:44 Re: [GENERAL] Still big problems with pg_dump!