Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My goal is to compute and persist a certain value before an update happens to a row in my table.

I created the trigger and the function, I don't get any errors but the function doesn't seem to be kicking in. Where am I going wrong?

The procedure

CREATE or REPLACE FUNCTION foo() returns trigger as
  $BODY$
  DECLARE
  BEGIN
    NEW.geomtry := st_transform(st_pointfromtext('POINT(' || NEW.af_lon || ' ' || NEW.af_lat || ')', 4326), 32643);
    return NEW;
  END;
  $BODY$
language plpgsql;

The trigger to trigger the method before an update happens

CREATE TRIGGER foo_trigger BEFORE UPDATE ON foo_table FOR EACH ROW EXECUTE PROCEDURE foo();
share|improve this question
What exactly do you mean with "doesn't seem to be kicking in". What statement are you running that you expect will kick off the trigger – a_horse_with_no_name Apr 7 '11 at 10:17
By 'kicking in', I meant, when an update to a row in the table is triggered from the app, the value that needs to be computed and persisted before the actual update happens is not happening. – Shreyas Satish Apr 7 '11 at 10:31
And which statement are you running that should fire the trigger? – a_horse_with_no_name Apr 7 '11 at 10:34
The UPDATE statement. Eg: UPDATE foo_table set lat = 12, lon =90 where id = 1; So, my idea is, before this statement is persisted, the geometry should be calculated and set in the corresponding row. – Shreyas Satish Apr 7 '11 at 10:46
When you do an update are the new values for lat and lon actually being stored in the database? – Eelke Apr 7 '11 at 11:55
show 1 more comment

1 Answer

You spelled "geometry" incorrectly in your stored proc. Make sure it is spelled consistently in your table and stored proc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.